Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FormatOptions ¶ added in v0.3.6
func FormatOptions() []string
func Outputers ¶ added in v0.0.5
func Outputers() []string
Outputers returns a sorted list of the names of the registered outputers.
func RegisterOutputer ¶ added in v0.0.5
RegisterOutputer registers a new outputer in the registry
Types ¶
type Documentation ¶ added in v0.0.5
type Documentation struct { //FakeDuration will only be used for testing purposes FakeDuration time.Duration }
Documentation represents the documentation output type
func (Documentation) Name ¶ added in v0.6.0
func (r Documentation) Name() string
Name returns the name
func (Documentation) Output ¶ added in v0.0.5
func (r Documentation) Output(w io.Writer, results <-chan []resource.TestResult, startTime time.Time, outConfig util.OutputConfig) (exitCode int)
type JUnit ¶ added in v0.1.2
type JUnit struct {
// contains filtered or unexported fields
}
JUnit represents the junit output type
type Json ¶ added in v0.0.7
type Json struct { // FakeDuration will only be used for testing purposes FakeDuration time.Duration }
Json represents the json output type
type JsonOneline ¶ added in v0.3.4
type JsonOneline struct {
// contains filtered or unexported fields
}
JsonOneline represents the JsonOneline output type
func (JsonOneline) Output ¶ added in v0.3.4
func (r JsonOneline) Output(w io.Writer, results <-chan []resource.TestResult, startTime time.Time, outConfig util.OutputConfig) (exitCode int)
Output writes the actual output
type Outputer ¶
type Outputer interface { Output(io.Writer, <-chan []resource.TestResult, time.Time, util.OutputConfig) int Name() string }
Outputer is the interface which is used for the generation of the view
func GetOutputer ¶ added in v0.0.5
GetOutputer returns an outputer by name
type Rspecish ¶
type Rspecish struct { //FakeDuration will only be needed for testing purposes FakeDuration time.Duration }
Rspecish represents the rspecish output type
Click to show internal directories.
Click to hide internal directories.