Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type TestCase ¶
type TestCase struct {
XMLName xml.Name `xml:"testcase"`
ClassName string `xml:"classname,attr"`
Name string `xml:"name,attr"`
Time float64 `xml:"time,attr"`
Failures []TestFailure `xml:"failure"`
Errors []TestError `xml:"error"`
}
type TestFailure ¶
type TestResult ¶
type TestSuite ¶
type TestSuite struct {
XMLName xml.Name `xml:"testsuite"`
Name string `xml:"name,attr"`
Errors int `xml:"errors,attr"`
Failures int `xml:"failures,attr"`
Skipped int `xml:"skipped,attr"`
Tests int `xml:"tests,attr"`
TestCases []TestCase `xml:"testcase"`
Paths file.Paths
// contains filtered or unexported fields
}
func (*TestSuite) GetFailures ¶
Click to show internal directories.
Click to hide internal directories.