Documentation ¶
Index ¶
- func TestSpecFromFilePath(filePath string) (*api.TestSpec, error)
- func TestSpecsFromFilePaths(filePaths []string) ([]*api.TestSpec, error)
- func TestSpecsFromPattern(pattern string) ([]*api.TestSpec, error)
- func UnmarshalTestCase(yamlBytes []byte, testSpec *api.TestSpec) error
- type App
- type Params
- type TestCaseReport
- type TestRunner
- type TestSuiteReport
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func TestSpecsFromFilePaths ¶
Types ¶
type App ¶
type App struct { // Parameters passed to the CLI by the user. Params *Params // Out is used to write the output. Defaults to standard out, // but can be overridden in tests to make assertions on the applications's output. Out io.Writer // Source of randomness. Tests can use a mocked random source in order to provide // deterministic testing behaviour. Random io.Reader }
func New ¶
func New() *App
New instantiates an App with default parameters, including standard output and cryptographically secure random source.
func (*App) TestPattern ¶
type Params ¶
type Params struct {
ApiConnectionDetails *client.ApiConnectionDetails
}
Params struct holds all user-customizable parameters. Using a single struct for all CLI commands ensures that all flags are distinct and that they can be provided either dynamically on a command line, or statically in a config file that's reused between command runs.
type TestCaseReport ¶
type TestCaseReport struct { Out *bytes.Buffer Start time.Time Finish time.Time FailureReason string BenchmarkReport *eventbenchmark.TestCaseBenchmarkReport TestSpec *api.TestSpec }
func (*TestCaseReport) JunitTestCase ¶
func (report *TestCaseReport) JunitTestCase() junit.Testcase
Convert to Junit TestCase according to spec: https://llg.cubic.org/docs/junit/
type TestRunner ¶
type TestRunner struct { Out io.Writer TestCaseReport *TestCaseReport // contains filtered or unexported fields }
type TestSuiteReport ¶
type TestSuiteReport struct { Start time.Time Finish time.Time TestCaseReports []*TestCaseReport }
func (*TestSuiteReport) NumFailures ¶
func (report *TestSuiteReport) NumFailures() int
func (*TestSuiteReport) NumSuccesses ¶
func (report *TestSuiteReport) NumSuccesses() int
Directories ¶
Path | Synopsis |
---|---|
Package build info
|
Package build info |
Utility for watching events.
|
Utility for watching events. |
Click to show internal directories.
Click to hide internal directories.