| 13 | ) |
| 14 | |
| 15 | type bmRepoStub struct { |
| 16 | getValueFn func(ctx context.Context, key string) (string, error) |
| 17 | calls int |
| 18 | } |
| 19 | |
| 20 | func (s *bmRepoStub) Get(ctx context.Context, key string) (*Setting, error) { |
| 21 | panic("unexpected Get call") |
nothing calls this directly
no outgoing calls
no test coverage detected