| 13 | var _ = Suite(&NoderSuite{}) |
| 14 | |
| 15 | type noderMock struct { |
| 16 | name string |
| 17 | hash []byte |
| 18 | isDir bool |
| 19 | children []Noder |
| 20 | } |
| 21 | |
| 22 | func (n noderMock) String() string { return n.Name() } |
| 23 | func (n noderMock) Hash() []byte { return n.hash } |
nothing calls this directly
no outgoing calls
no test coverage detected