| 72 | } |
| 73 | |
| 74 | type MockTable struct { |
| 75 | state []string |
| 76 | } |
| 77 | |
| 78 | func CreateMockTable(s []string) *MockTable { return &MockTable{s} } |
| 79 | func (mt *MockTable) Operation1() error { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected