MockRawBytesDataCacher is a mock implementation of RawBytesDataCacher for testing.
| 25 | |
| 26 | // MockRawBytesDataCacher is a mock implementation of RawBytesDataCacher for testing. |
| 27 | type MockRawBytesDataCacher struct { |
| 28 | t *testing.T |
| 29 | expectedCacheCalls []*ExpectedCacheCall |
| 30 | expectedGetCalls []*ExpectedGetCall |
| 31 | actualCacheCalls []*ActualCacheCall |
| 32 | actualGetCalls []*ActualGetCall |
| 33 | currentCacheCallIdx int |
| 34 | currentGetCallIdx int |
| 35 | } |
| 36 | |
| 37 | // NewMockRawBytesDataCacher creates a new MockRawBytesDataCacher. |
| 38 | func NewMockRawBytesDataCacher( |
nothing calls this directly
no outgoing calls
no test coverage detected