Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Check ¶
type Check struct {
ID string `json:"id"`
Name string `json:"name"`
Command []string `json:"command"`
Kind Kind `json:"kind"`
Framework Framework `json:"framework"`
}
Check is a runnable workspace verification command discovered from project files.
type Failure ¶
type Failure struct {
Name string `json:"name"`
File string `json:"file,omitempty"`
Message string `json:"message,omitempty"`
}
Failure captures the most useful location and message for a failing test.
type Framework ¶
type Framework string
Framework identifies the runner family used to execute or parse a check.
type Summary ¶
type Summary struct {
Framework Framework `json:"framework"`
Total int `json:"total,omitempty"`
Passed int `json:"passed,omitempty"`
Failed int `json:"failed,omitempty"`
Skipped int `json:"skipped,omitempty"`
Failures []Failure `json:"failures,omitempty"`
}
Summary is the structured test result parsed from runner output.
Click to show internal directories.
Click to hide internal directories.