MOCKS
| 106 | // MOCKS |
| 107 | // |
| 108 | type extractCreatorMock struct { |
| 109 | useCompression bool |
| 110 | createShard func(s *extract.Shard, w io.Writer, loadContent extract.LoadContentFunc) // func to hijack CreateShard function |
| 111 | } |
| 112 | |
| 113 | func (*extractCreatorMock) ExtractShard(*cluster.LOM, cos.ReadReaderAt, extract.RecordExtractor, bool) (int64, int, error) { |
| 114 | return 0, 0, nil |
nothing calls this directly
no outgoing calls
no test coverage detected