测试用的简单 Interface 实现
| 367 | |
| 368 | // 测试用的简单 Interface 实现 |
| 369 | type TestInterface struct { |
| 370 | name string |
| 371 | typ string |
| 372 | } |
| 373 | |
| 374 | func (i *TestInterface) Name() string { |
| 375 | return i.name |
nothing calls this directly
no outgoing calls
no test coverage detected