type JunitReportConfig … type JUnitTestSuites … type JUnitTestSuite … type JUnitProperties … func (jup JUnitProperties) WithName(name string) string { … } type JUnitProperty … var ownerRE … type JUnitTestCase … type JUnitSkipped … type JUnitError … type JUnitFailure … func GenerateJUnitReport(report types.Report, dst string) error { … } func GenerateJUnitReportWithConfig(report types.Report, dst string, config JunitReportConfig) error { … } func MergeAndCleanupJUnitReports(sources []string, dst string) ([]string, error) { … } func failureDescriptionForUnstructuredReporters(spec types.SpecReport) string { … } func systemErrForUnstructuredReporters(spec types.SpecReport) string { … } func RenderTimeline(spec types.SpecReport, noColor bool) string { … } func systemOutForUnstructuredReporters(spec types.SpecReport) string { … } type JUnitReporter … func NewJUnitReporter(_ string) *JUnitReporter { … } func (reporter *JUnitReporter) SuiteWillBegin(_ config.GinkgoConfigType, _ *types.SuiteSummary) { … } func (reporter *JUnitReporter) BeforeSuiteDidRun(_ *types.SetupSummary) { … } func (reporter *JUnitReporter) SpecWillRun(_ *types.SpecSummary) { … } func (reporter *JUnitReporter) SpecDidComplete(_ *types.SpecSummary) { … } func (reporter *JUnitReporter) AfterSuiteDidRun(_ *types.SetupSummary) { … } func (reporter *JUnitReporter) SuiteDidEnd(_ *types.SuiteSummary) { … }