Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Maker ¶
type Maker interface { MakeMetricsExpectation(config *types.MetricsExpectation) (*MetricsExpectation, error) MakeOutputExpectation(config *types.OutputExpectation) (*OutputExpectation, error) MakeResponseExpectation(config *types.ResponseExpectation) (*ResponseExpectation, error) }
func CreateMaker ¶
func CreateMaker(fnd app.Foundation, parametersMaker parameters.Maker) Maker
type MetricRule ¶
type MetricRule struct { Metric string Operator metrics.MetricOperator Value float64 }
type MetricsExpectation ¶
type MetricsExpectation struct { Id string Rules []MetricRule }
type OutputExpectation ¶
type OutputExpectation struct { OrderType OrderType MatchType MatchType OutputType OutputType Messages []string RenderTemplate bool }
type OutputType ¶
type OutputType string
const ( OutputTypeStdout OutputType = "stdout" OutputTypeStderr OutputType = "stderr" OutputTypeAny OutputType = "any" )
Click to show internal directories.
Click to hide internal directories.