Documentation ¶
Index ¶
- type CommonExpectation
- type ExpectationActionMaker
- func (m *ExpectationActionMaker) MakeCommonExpectation(sl services.ServiceLocator, serviceName string, timeout, defaultTimeout int, ...) (*CommonExpectation, error)
- func (m *ExpectationActionMaker) MakeCustomAction(config *types.CustomExpectationAction, sl services.ServiceLocator, ...) (action.Action, error)
- func (m *ExpectationActionMaker) MakeMetricsAction(config *types.MetricsExpectationAction, sl services.ServiceLocator, ...) (action.Action, error)
- func (m *ExpectationActionMaker) MakeOutputAction(config *types.OutputExpectationAction, sl services.ServiceLocator, ...) (action.Action, error)
- func (m *ExpectationActionMaker) MakeResponseAction(config *types.ResponseExpectationAction, sl services.ServiceLocator, ...) (action.Action, error)
- type Maker
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CommonExpectation ¶
type CommonExpectation struct {
// contains filtered or unexported fields
}
type ExpectationActionMaker ¶
type ExpectationActionMaker struct {
// contains filtered or unexported fields
}
func CreateExpectationActionMaker ¶
func CreateExpectationActionMaker( fnd app.Foundation, expectationsMaker expectations.Maker, parametersMaker parameters.Maker, ) *ExpectationActionMaker
func (*ExpectationActionMaker) MakeCommonExpectation ¶
func (m *ExpectationActionMaker) MakeCommonExpectation( sl services.ServiceLocator, serviceName string, timeout, defaultTimeout int, when string, ) (*CommonExpectation, error)
func (*ExpectationActionMaker) MakeCustomAction ¶
func (m *ExpectationActionMaker) MakeCustomAction( config *types.CustomExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error)
func (*ExpectationActionMaker) MakeMetricsAction ¶
func (m *ExpectationActionMaker) MakeMetricsAction( config *types.MetricsExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error)
func (*ExpectationActionMaker) MakeOutputAction ¶
func (m *ExpectationActionMaker) MakeOutputAction( config *types.OutputExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error)
func (*ExpectationActionMaker) MakeResponseAction ¶
func (m *ExpectationActionMaker) MakeResponseAction( config *types.ResponseExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error)
type Maker ¶
type Maker interface { MakeCustomAction( config *types.CustomExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error) MakeMetricsAction( config *types.MetricsExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error) MakeOutputAction( config *types.OutputExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error) MakeResponseAction( config *types.ResponseExpectationAction, sl services.ServiceLocator, defaultTimeout int, ) (action.Action, error) }
Click to show internal directories.
Click to hide internal directories.