Documentation
¶
Index ¶
Constants ¶
View Source
const DefaultTestPackageArgument = "./..."
DefaultTestPackageArgument is the default package argument when calling go test.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type All ¶
type All struct {
// contains filtered or unexported fields
}
All is a composite command for running all the available commands. Usually executed when calling the CLI without arguments.
type Commands ¶
type Commands map[string]cli.CommandFactory
Commands is the mapping of all available go-toolkit commands.
type Test ¶
type Test struct {
// contains filtered or unexported fields
}
type TestArgs ¶
type TestArgs struct {
// Do not start new tests after the first test failure.
FailFast bool
// If true, it will make testing.Short() returns true.
// Useful for separating long-running test from the rest of the test-suite or,
// excluding tests that should only run when building in the CI.
Short bool
// See 'go help packages'.
Pattern string
}
Click to show internal directories.
Click to hide internal directories.