namedFake is a fakeToolSet that already advertises a Name(); WithName must respect that and return the inner toolset unchanged.
| 19 | // namedFake is a fakeToolSet that already advertises a Name(); WithName |
| 20 | // must respect that and return the inner toolset unchanged. |
| 21 | type namedFake struct { |
| 22 | fakeToolSet |
| 23 | |
| 24 | name string |
| 25 | } |
| 26 | |
| 27 | func (n namedFake) Name() string { return n.name } |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected