Documentation
¶
Overview ¶
Package model defines the format-agnostic test result types that all parsers produce and all renderers consume.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Report ¶
type Report struct {
Title string
Sources []string // original input paths / labels
Timestamp time.Time
Duration time.Duration
Suites []Suite
}
Report is the top-level, format-independent result tree.
type TestCase ¶
type TestCase struct {
Suite string // Logical grouping: classname, package path, file name, …
Name string // Test identifier
Status Status
Duration time.Duration
Message string // Failure / error / skip reason
Stdout string // Captured output; non-empty only for failures
File string // Source file path (available from GTest XML)
Line int // Source line number (available from GTest XML)
Attachments []string // file paths or base64 data URIs (e.g. from Playwright/Cypress)
}
TestCase holds the normalised result of one test.
Click to show internal directories.
Click to hide internal directories.