Documentation ¶
Index ¶
- type Store
- type StoreMock
- func (mmDeleteModuleByID *StoreMock) DeleteModuleByID(id int) (err error)
- func (mmDeleteModuleByID *StoreMock) DeleteModuleByIDAfterCounter() uint64
- func (mmDeleteModuleByID *StoreMock) DeleteModuleByIDBeforeCounter() uint64
- func (mmInsertModules *StoreMock) InsertModules(ma1 []coordinates.Module) (i1 int, err error)
- func (mmInsertModules *StoreMock) InsertModulesAfterCounter() uint64
- func (mmInsertModules *StoreMock) InsertModulesBeforeCounter() uint64
- func (mmListHeartbeats *StoreMock) ListHeartbeats() (ha1 []payloads.Heartbeat, err error)
- func (mmListHeartbeats *StoreMock) ListHeartbeatsAfterCounter() uint64
- func (mmListHeartbeats *StoreMock) ListHeartbeatsBeforeCounter() uint64
- func (mmListModuleIDs *StoreMock) ListModuleIDs() (ia1 []int64, err error)
- func (mmListModuleIDs *StoreMock) ListModuleIDsAfterCounter() uint64
- func (mmListModuleIDs *StoreMock) ListModuleIDsBeforeCounter() uint64
- func (mmListModules *StoreMock) ListModules() (sa1 []coordinates.SerialModule, err error)
- func (mmListModules *StoreMock) ListModulesAfterCounter() uint64
- func (mmListModules *StoreMock) ListModulesBeforeCounter() uint64
- func (mmListModulesByIDs *StoreMock) ListModulesByIDs(ids []int64) (sa1 []coordinates.SerialModule, err error)
- func (mmListModulesByIDs *StoreMock) ListModulesByIDsAfterCounter() uint64
- func (mmListModulesByIDs *StoreMock) ListModulesByIDsBeforeCounter() uint64
- func (mmListModulesBySource *StoreMock) ListModulesBySource(source string) (sa1 []coordinates.SerialModule, err error)
- func (mmListModulesBySource *StoreMock) ListModulesBySourceAfterCounter() uint64
- func (mmListModulesBySource *StoreMock) ListModulesBySourceBeforeCounter() uint64
- func (mmListStartConfigs *StoreMock) ListStartConfigs() (ca1 []payloads.Configuration, err error)
- func (mmListStartConfigs *StoreMock) ListStartConfigsAfterCounter() uint64
- func (mmListStartConfigs *StoreMock) ListStartConfigsBeforeCounter() uint64
- func (m *StoreMock) MinimockDeleteModuleByIDDone() bool
- func (m *StoreMock) MinimockDeleteModuleByIDInspect()
- func (m *StoreMock) MinimockFinish()
- func (m *StoreMock) MinimockInsertModulesDone() bool
- func (m *StoreMock) MinimockInsertModulesInspect()
- func (m *StoreMock) MinimockListHeartbeatsDone() bool
- func (m *StoreMock) MinimockListHeartbeatsInspect()
- func (m *StoreMock) MinimockListModuleIDsDone() bool
- func (m *StoreMock) MinimockListModuleIDsInspect()
- func (m *StoreMock) MinimockListModulesByIDsDone() bool
- func (m *StoreMock) MinimockListModulesByIDsInspect()
- func (m *StoreMock) MinimockListModulesBySourceDone() bool
- func (m *StoreMock) MinimockListModulesBySourceInspect()
- func (m *StoreMock) MinimockListModulesDone() bool
- func (m *StoreMock) MinimockListModulesInspect()
- func (m *StoreMock) MinimockListStartConfigsDone() bool
- func (m *StoreMock) MinimockListStartConfigsInspect()
- func (m *StoreMock) MinimockPurgeProxyDone() bool
- func (m *StoreMock) MinimockPurgeProxyInspect()
- func (m *StoreMock) MinimockSetHeartbeatDone() bool
- func (m *StoreMock) MinimockSetHeartbeatInspect()
- func (m *StoreMock) MinimockSetStartConfigDone() bool
- func (m *StoreMock) MinimockSetStartConfigInspect()
- func (m *StoreMock) MinimockWait(timeout mm_time.Duration)
- func (mmPurgeProxy *StoreMock) PurgeProxy(instance netservice.Instance) (err error)
- func (mmPurgeProxy *StoreMock) PurgeProxyAfterCounter() uint64
- func (mmPurgeProxy *StoreMock) PurgeProxyBeforeCounter() uint64
- func (mmSetHeartbeat *StoreMock) SetHeartbeat(h1 payloads.Heartbeat) (err error)
- func (mmSetHeartbeat *StoreMock) SetHeartbeatAfterCounter() uint64
- func (mmSetHeartbeat *StoreMock) SetHeartbeatBeforeCounter() uint64
- func (mmSetStartConfig *StoreMock) SetStartConfig(c1 payloads.Configuration) (err error)
- func (mmSetStartConfig *StoreMock) SetStartConfigAfterCounter() uint64
- func (mmSetStartConfig *StoreMock) SetStartConfigBeforeCounter() uint64
- type StoreMockDeleteModuleByIDExpectation
- type StoreMockDeleteModuleByIDParams
- type StoreMockDeleteModuleByIDResults
- type StoreMockInsertModulesExpectation
- type StoreMockInsertModulesParams
- type StoreMockInsertModulesResults
- type StoreMockListHeartbeatsExpectation
- type StoreMockListHeartbeatsResults
- type StoreMockListModuleIDsExpectation
- type StoreMockListModuleIDsResults
- type StoreMockListModulesByIDsExpectation
- type StoreMockListModulesByIDsParams
- type StoreMockListModulesByIDsResults
- type StoreMockListModulesBySourceExpectation
- type StoreMockListModulesBySourceParams
- type StoreMockListModulesBySourceResults
- type StoreMockListModulesExpectation
- type StoreMockListModulesResults
- type StoreMockListStartConfigsExpectation
- type StoreMockListStartConfigsResults
- type StoreMockPurgeProxyExpectation
- type StoreMockPurgeProxyParams
- type StoreMockPurgeProxyResults
- type StoreMockSetHeartbeatExpectation
- type StoreMockSetHeartbeatParams
- type StoreMockSetHeartbeatResults
- type StoreMockSetStartConfigExpectation
- type StoreMockSetStartConfigParams
- type StoreMockSetStartConfigResults
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface { // modules ListModuleIDs() ([]int64, error) ListModulesByIDs(ids []int64) ([]coordinates.SerialModule, error) ListModulesBySource(source string) ([]coordinates.SerialModule, error) ListModules() ([]coordinates.SerialModule, error) InsertModules([]coordinates.Module) (int, error) DeleteModuleByID(id int) error // startup configs and payloads SetStartConfig(payloads.Configuration) error ListStartConfigs() ([]payloads.Configuration, error) SetHeartbeat(payloads.Heartbeat) error ListHeartbeats() ([]payloads.Heartbeat, error) PurgeProxy(instance netservice.Instance) error }
type StoreMock ¶
type StoreMock struct { DeleteModuleByIDMock mStoreMockDeleteModuleByID InsertModulesMock mStoreMockInsertModules ListHeartbeatsMock mStoreMockListHeartbeats ListModuleIDsMock mStoreMockListModuleIDs ListModulesMock mStoreMockListModules ListModulesByIDsMock mStoreMockListModulesByIDs ListModulesBySourceMock mStoreMockListModulesBySource ListStartConfigsMock mStoreMockListStartConfigs PurgeProxyMock mStoreMockPurgeProxy SetHeartbeatMock mStoreMockSetHeartbeat SetStartConfigMock mStoreMockSetStartConfig // contains filtered or unexported fields }
StoreMock implements Store
func NewStoreMock ¶
func NewStoreMock(t minimock.Tester) *StoreMock
NewStoreMock returns a mock for Store
func (*StoreMock) DeleteModuleByID ¶
DeleteModuleByID implements Store
func (*StoreMock) DeleteModuleByIDAfterCounter ¶
DeleteModuleByIDAfterCounter returns a count of finished StoreMock.DeleteModuleByID invocations
func (*StoreMock) DeleteModuleByIDBeforeCounter ¶
DeleteModuleByIDBeforeCounter returns a count of StoreMock.DeleteModuleByID invocations
func (*StoreMock) InsertModules ¶
func (mmInsertModules *StoreMock) InsertModules(ma1 []coordinates.Module) (i1 int, err error)
InsertModules implements Store
func (*StoreMock) InsertModulesAfterCounter ¶
InsertModulesAfterCounter returns a count of finished StoreMock.InsertModules invocations
func (*StoreMock) InsertModulesBeforeCounter ¶
InsertModulesBeforeCounter returns a count of StoreMock.InsertModules invocations
func (*StoreMock) ListHeartbeats ¶
ListHeartbeats implements Store
func (*StoreMock) ListHeartbeatsAfterCounter ¶
ListHeartbeatsAfterCounter returns a count of finished StoreMock.ListHeartbeats invocations
func (*StoreMock) ListHeartbeatsBeforeCounter ¶
ListHeartbeatsBeforeCounter returns a count of StoreMock.ListHeartbeats invocations
func (*StoreMock) ListModuleIDs ¶
ListModuleIDs implements Store
func (*StoreMock) ListModuleIDsAfterCounter ¶
ListModuleIDsAfterCounter returns a count of finished StoreMock.ListModuleIDs invocations
func (*StoreMock) ListModuleIDsBeforeCounter ¶
ListModuleIDsBeforeCounter returns a count of StoreMock.ListModuleIDs invocations
func (*StoreMock) ListModules ¶
func (mmListModules *StoreMock) ListModules() (sa1 []coordinates.SerialModule, err error)
ListModules implements Store
func (*StoreMock) ListModulesAfterCounter ¶
ListModulesAfterCounter returns a count of finished StoreMock.ListModules invocations
func (*StoreMock) ListModulesBeforeCounter ¶
ListModulesBeforeCounter returns a count of StoreMock.ListModules invocations
func (*StoreMock) ListModulesByIDs ¶
func (mmListModulesByIDs *StoreMock) ListModulesByIDs(ids []int64) (sa1 []coordinates.SerialModule, err error)
ListModulesByIDs implements Store
func (*StoreMock) ListModulesByIDsAfterCounter ¶
ListModulesByIDsAfterCounter returns a count of finished StoreMock.ListModulesByIDs invocations
func (*StoreMock) ListModulesByIDsBeforeCounter ¶
ListModulesByIDsBeforeCounter returns a count of StoreMock.ListModulesByIDs invocations
func (*StoreMock) ListModulesBySource ¶
func (mmListModulesBySource *StoreMock) ListModulesBySource(source string) (sa1 []coordinates.SerialModule, err error)
ListModulesBySource implements Store
func (*StoreMock) ListModulesBySourceAfterCounter ¶
ListModulesBySourceAfterCounter returns a count of finished StoreMock.ListModulesBySource invocations
func (*StoreMock) ListModulesBySourceBeforeCounter ¶
ListModulesBySourceBeforeCounter returns a count of StoreMock.ListModulesBySource invocations
func (*StoreMock) ListStartConfigs ¶
func (mmListStartConfigs *StoreMock) ListStartConfigs() (ca1 []payloads.Configuration, err error)
ListStartConfigs implements Store
func (*StoreMock) ListStartConfigsAfterCounter ¶
ListStartConfigsAfterCounter returns a count of finished StoreMock.ListStartConfigs invocations
func (*StoreMock) ListStartConfigsBeforeCounter ¶
ListStartConfigsBeforeCounter returns a count of StoreMock.ListStartConfigs invocations
func (*StoreMock) MinimockDeleteModuleByIDDone ¶
MinimockDeleteModuleByIDDone returns true if the count of the DeleteModuleByID invocations corresponds the number of defined expectations
func (*StoreMock) MinimockDeleteModuleByIDInspect ¶
func (m *StoreMock) MinimockDeleteModuleByIDInspect()
MinimockDeleteModuleByIDInspect logs each unmet expectation
func (*StoreMock) MinimockFinish ¶
func (m *StoreMock) MinimockFinish()
MinimockFinish checks that all mocked methods have been called the expected number of times
func (*StoreMock) MinimockInsertModulesDone ¶
MinimockInsertModulesDone returns true if the count of the InsertModules invocations corresponds the number of defined expectations
func (*StoreMock) MinimockInsertModulesInspect ¶
func (m *StoreMock) MinimockInsertModulesInspect()
MinimockInsertModulesInspect logs each unmet expectation
func (*StoreMock) MinimockListHeartbeatsDone ¶
MinimockListHeartbeatsDone returns true if the count of the ListHeartbeats invocations corresponds the number of defined expectations
func (*StoreMock) MinimockListHeartbeatsInspect ¶
func (m *StoreMock) MinimockListHeartbeatsInspect()
MinimockListHeartbeatsInspect logs each unmet expectation
func (*StoreMock) MinimockListModuleIDsDone ¶
MinimockListModuleIDsDone returns true if the count of the ListModuleIDs invocations corresponds the number of defined expectations
func (*StoreMock) MinimockListModuleIDsInspect ¶
func (m *StoreMock) MinimockListModuleIDsInspect()
MinimockListModuleIDsInspect logs each unmet expectation
func (*StoreMock) MinimockListModulesByIDsDone ¶
MinimockListModulesByIDsDone returns true if the count of the ListModulesByIDs invocations corresponds the number of defined expectations
func (*StoreMock) MinimockListModulesByIDsInspect ¶
func (m *StoreMock) MinimockListModulesByIDsInspect()
MinimockListModulesByIDsInspect logs each unmet expectation
func (*StoreMock) MinimockListModulesBySourceDone ¶
MinimockListModulesBySourceDone returns true if the count of the ListModulesBySource invocations corresponds the number of defined expectations
func (*StoreMock) MinimockListModulesBySourceInspect ¶
func (m *StoreMock) MinimockListModulesBySourceInspect()
MinimockListModulesBySourceInspect logs each unmet expectation
func (*StoreMock) MinimockListModulesDone ¶
MinimockListModulesDone returns true if the count of the ListModules invocations corresponds the number of defined expectations
func (*StoreMock) MinimockListModulesInspect ¶
func (m *StoreMock) MinimockListModulesInspect()
MinimockListModulesInspect logs each unmet expectation
func (*StoreMock) MinimockListStartConfigsDone ¶
MinimockListStartConfigsDone returns true if the count of the ListStartConfigs invocations corresponds the number of defined expectations
func (*StoreMock) MinimockListStartConfigsInspect ¶
func (m *StoreMock) MinimockListStartConfigsInspect()
MinimockListStartConfigsInspect logs each unmet expectation
func (*StoreMock) MinimockPurgeProxyDone ¶
MinimockPurgeProxyDone returns true if the count of the PurgeProxy invocations corresponds the number of defined expectations
func (*StoreMock) MinimockPurgeProxyInspect ¶
func (m *StoreMock) MinimockPurgeProxyInspect()
MinimockPurgeProxyInspect logs each unmet expectation
func (*StoreMock) MinimockSetHeartbeatDone ¶
MinimockSetHeartbeatDone returns true if the count of the SetHeartbeat invocations corresponds the number of defined expectations
func (*StoreMock) MinimockSetHeartbeatInspect ¶
func (m *StoreMock) MinimockSetHeartbeatInspect()
MinimockSetHeartbeatInspect logs each unmet expectation
func (*StoreMock) MinimockSetStartConfigDone ¶
MinimockSetStartConfigDone returns true if the count of the SetStartConfig invocations corresponds the number of defined expectations
func (*StoreMock) MinimockSetStartConfigInspect ¶
func (m *StoreMock) MinimockSetStartConfigInspect()
MinimockSetStartConfigInspect logs each unmet expectation
func (*StoreMock) MinimockWait ¶
MinimockWait waits for all mocked methods to be called the expected number of times
func (*StoreMock) PurgeProxy ¶
func (mmPurgeProxy *StoreMock) PurgeProxy(instance netservice.Instance) (err error)
PurgeProxy implements Store
func (*StoreMock) PurgeProxyAfterCounter ¶
PurgeProxyAfterCounter returns a count of finished StoreMock.PurgeProxy invocations
func (*StoreMock) PurgeProxyBeforeCounter ¶
PurgeProxyBeforeCounter returns a count of StoreMock.PurgeProxy invocations
func (*StoreMock) SetHeartbeat ¶
SetHeartbeat implements Store
func (*StoreMock) SetHeartbeatAfterCounter ¶
SetHeartbeatAfterCounter returns a count of finished StoreMock.SetHeartbeat invocations
func (*StoreMock) SetHeartbeatBeforeCounter ¶
SetHeartbeatBeforeCounter returns a count of StoreMock.SetHeartbeat invocations
func (*StoreMock) SetStartConfig ¶
func (mmSetStartConfig *StoreMock) SetStartConfig(c1 payloads.Configuration) (err error)
SetStartConfig implements Store
func (*StoreMock) SetStartConfigAfterCounter ¶
SetStartConfigAfterCounter returns a count of finished StoreMock.SetStartConfig invocations
func (*StoreMock) SetStartConfigBeforeCounter ¶
SetStartConfigBeforeCounter returns a count of StoreMock.SetStartConfig invocations
type StoreMockDeleteModuleByIDExpectation ¶
type StoreMockDeleteModuleByIDExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockDeleteModuleByIDExpectation specifies expectation struct of the Store.DeleteModuleByID
func (*StoreMockDeleteModuleByIDExpectation) Then ¶
func (e *StoreMockDeleteModuleByIDExpectation) Then(err error) *StoreMock
Then sets up Store.DeleteModuleByID return parameters for the expectation previously defined by the When method
type StoreMockDeleteModuleByIDParams ¶
type StoreMockDeleteModuleByIDParams struct {
// contains filtered or unexported fields
}
StoreMockDeleteModuleByIDParams contains parameters of the Store.DeleteModuleByID
type StoreMockDeleteModuleByIDResults ¶
type StoreMockDeleteModuleByIDResults struct {
// contains filtered or unexported fields
}
StoreMockDeleteModuleByIDResults contains results of the Store.DeleteModuleByID
type StoreMockInsertModulesExpectation ¶
type StoreMockInsertModulesExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockInsertModulesExpectation specifies expectation struct of the Store.InsertModules
type StoreMockInsertModulesParams ¶
type StoreMockInsertModulesParams struct {
// contains filtered or unexported fields
}
StoreMockInsertModulesParams contains parameters of the Store.InsertModules
type StoreMockInsertModulesResults ¶
type StoreMockInsertModulesResults struct {
// contains filtered or unexported fields
}
StoreMockInsertModulesResults contains results of the Store.InsertModules
type StoreMockListHeartbeatsExpectation ¶
type StoreMockListHeartbeatsExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockListHeartbeatsExpectation specifies expectation struct of the Store.ListHeartbeats
type StoreMockListHeartbeatsResults ¶
type StoreMockListHeartbeatsResults struct {
// contains filtered or unexported fields
}
StoreMockListHeartbeatsResults contains results of the Store.ListHeartbeats
type StoreMockListModuleIDsExpectation ¶
type StoreMockListModuleIDsExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockListModuleIDsExpectation specifies expectation struct of the Store.ListModuleIDs
type StoreMockListModuleIDsResults ¶
type StoreMockListModuleIDsResults struct {
// contains filtered or unexported fields
}
StoreMockListModuleIDsResults contains results of the Store.ListModuleIDs
type StoreMockListModulesByIDsExpectation ¶
type StoreMockListModulesByIDsExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockListModulesByIDsExpectation specifies expectation struct of the Store.ListModulesByIDs
func (*StoreMockListModulesByIDsExpectation) Then ¶
func (e *StoreMockListModulesByIDsExpectation) Then(sa1 []coordinates.SerialModule, err error) *StoreMock
Then sets up Store.ListModulesByIDs return parameters for the expectation previously defined by the When method
type StoreMockListModulesByIDsParams ¶
type StoreMockListModulesByIDsParams struct {
// contains filtered or unexported fields
}
StoreMockListModulesByIDsParams contains parameters of the Store.ListModulesByIDs
type StoreMockListModulesByIDsResults ¶
type StoreMockListModulesByIDsResults struct {
// contains filtered or unexported fields
}
StoreMockListModulesByIDsResults contains results of the Store.ListModulesByIDs
type StoreMockListModulesBySourceExpectation ¶
type StoreMockListModulesBySourceExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockListModulesBySourceExpectation specifies expectation struct of the Store.ListModulesBySource
func (*StoreMockListModulesBySourceExpectation) Then ¶
func (e *StoreMockListModulesBySourceExpectation) Then(sa1 []coordinates.SerialModule, err error) *StoreMock
Then sets up Store.ListModulesBySource return parameters for the expectation previously defined by the When method
type StoreMockListModulesBySourceParams ¶
type StoreMockListModulesBySourceParams struct {
// contains filtered or unexported fields
}
StoreMockListModulesBySourceParams contains parameters of the Store.ListModulesBySource
type StoreMockListModulesBySourceResults ¶
type StoreMockListModulesBySourceResults struct {
// contains filtered or unexported fields
}
StoreMockListModulesBySourceResults contains results of the Store.ListModulesBySource
type StoreMockListModulesExpectation ¶
type StoreMockListModulesExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockListModulesExpectation specifies expectation struct of the Store.ListModules
type StoreMockListModulesResults ¶
type StoreMockListModulesResults struct {
// contains filtered or unexported fields
}
StoreMockListModulesResults contains results of the Store.ListModules
type StoreMockListStartConfigsExpectation ¶
type StoreMockListStartConfigsExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockListStartConfigsExpectation specifies expectation struct of the Store.ListStartConfigs
type StoreMockListStartConfigsResults ¶
type StoreMockListStartConfigsResults struct {
// contains filtered or unexported fields
}
StoreMockListStartConfigsResults contains results of the Store.ListStartConfigs
type StoreMockPurgeProxyExpectation ¶
type StoreMockPurgeProxyExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockPurgeProxyExpectation specifies expectation struct of the Store.PurgeProxy
func (*StoreMockPurgeProxyExpectation) Then ¶
func (e *StoreMockPurgeProxyExpectation) Then(err error) *StoreMock
Then sets up Store.PurgeProxy return parameters for the expectation previously defined by the When method
type StoreMockPurgeProxyParams ¶
type StoreMockPurgeProxyParams struct {
// contains filtered or unexported fields
}
StoreMockPurgeProxyParams contains parameters of the Store.PurgeProxy
type StoreMockPurgeProxyResults ¶
type StoreMockPurgeProxyResults struct {
// contains filtered or unexported fields
}
StoreMockPurgeProxyResults contains results of the Store.PurgeProxy
type StoreMockSetHeartbeatExpectation ¶
type StoreMockSetHeartbeatExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockSetHeartbeatExpectation specifies expectation struct of the Store.SetHeartbeat
func (*StoreMockSetHeartbeatExpectation) Then ¶
func (e *StoreMockSetHeartbeatExpectation) Then(err error) *StoreMock
Then sets up Store.SetHeartbeat return parameters for the expectation previously defined by the When method
type StoreMockSetHeartbeatParams ¶
type StoreMockSetHeartbeatParams struct {
// contains filtered or unexported fields
}
StoreMockSetHeartbeatParams contains parameters of the Store.SetHeartbeat
type StoreMockSetHeartbeatResults ¶
type StoreMockSetHeartbeatResults struct {
// contains filtered or unexported fields
}
StoreMockSetHeartbeatResults contains results of the Store.SetHeartbeat
type StoreMockSetStartConfigExpectation ¶
type StoreMockSetStartConfigExpectation struct { Counter uint64 // contains filtered or unexported fields }
StoreMockSetStartConfigExpectation specifies expectation struct of the Store.SetStartConfig
func (*StoreMockSetStartConfigExpectation) Then ¶
func (e *StoreMockSetStartConfigExpectation) Then(err error) *StoreMock
Then sets up Store.SetStartConfig return parameters for the expectation previously defined by the When method
type StoreMockSetStartConfigParams ¶
type StoreMockSetStartConfigParams struct {
// contains filtered or unexported fields
}
StoreMockSetStartConfigParams contains parameters of the Store.SetStartConfig
type StoreMockSetStartConfigResults ¶
type StoreMockSetStartConfigResults struct {
// contains filtered or unexported fields
}
StoreMockSetStartConfigResults contains results of the Store.SetStartConfig