package
Version:
v0.0.0-...-cfc8201
Opens a new window with list of versions in this module.
Published: Sep 19, 2023
License: MIT
Opens a new window with license information.
Imports: 7
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type AutomationTestJson struct {
Succeeded int `json:"succeeded"`
Failed int `json:"failed"`
TotalDuration float64 `json:"totalDuration"`
TimeStamp string `json:"reportCreatedOn"`
Tests []Test `json:"tests"`
}
UE4 JSON Test Unit Structure
type FailureTag struct {
Message string `xml:"message,attr"`
Type string `xml:"type,attr"`
OutputMessage string `xml:",innerxml"`
}
type Test struct {
TestDisplayName string `json:"testDisplayName"`
FullTestPath string `json:"fullTestPath"`
Duration float64 `json:"Duration"`
Errors int `json:"errors"`
Entries []TestEntry `json:"entries,omitempty"`
}
type TestEntry struct {
Event TestEvent `json:"event"`
}
type TestEvent struct {
Type string `json:"type"`
Message string `json:"message"`
}
type TestFailed struct {
ClassName string `xml:"classname,attr"`
Name string `xml:"name,attr"`
Time float64 `xml:"time,attr"`
Failure FailureTag `xml:"failure,omitempty"`
}
type TestSuccess struct {
ClassName string `xml:"classname,attr"`
Name string `xml:"name,attr"`
Time float64 `xml:"time,attr"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.