| 13 | ) |
| 14 | |
| 15 | type mockSource struct { |
| 16 | name string |
| 17 | parentDir string |
| 18 | mu sync.RWMutex |
| 19 | data []byte |
| 20 | err error |
| 21 | readCount int |
| 22 | } |
| 23 | |
| 24 | func (m *mockSource) Name() string { |
| 25 | return m.name |
nothing calls this directly
no outgoing calls
no test coverage detected