Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PHPUnit ¶
type PHPUnit struct {
XMLName xml.Name `xml:"phpunit"`
Bootstrap string `xml:"bootstrap,attr"`
TestSuites TestSuites `xml:"testsuites"`
RawXML []byte `xml:"-"`
}
func ParsePHPUnit ¶
type Runner ¶
type Runner struct {
XMLName xml.Name `xml:"runner"`
Workers int `xml:"workers"`
Configuration string `xml:"configuration"`
ConfigBuildDir string `xml:"config-build-dir"`
TestSuffix string `xml:"test-suffix"`
Before string `xml:"before"`
BeforeWorker string `xml:"before-worker"`
RunWorker string `xml:"run-worker"`
AfterWorker string `xml:"after-worker"`
After string `xml:"after"`
Filter string `xml:"-"` // CLI-only, not in XML config
Group string `xml:"-"` // CLI-only, not in XML config
ExcludeGroup string `xml:"-"` // CLI-only, not in XML config
}
func DefaultRunner ¶
func DefaultRunner() *Runner
func ParseRunner ¶
type TestSuites ¶
type TestSuites struct {
TestSuites []TestSuite `xml:"testsuite"`
}
Click to show internal directories.
Click to hide internal directories.