(t *testing.T)
| 16 | } |
| 17 | |
| 18 | func TestErrorMapGet(t *testing.T) { |
| 19 | m := newErrorMap() |
| 20 | err := errors.New("get") |
| 21 | if c := m.get(err); c != 0 { |
| 22 | t.Error(c) |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | func TestByFrequency(t *testing.T) { |
| 27 | m := newErrorMap() |
nothing calls this directly
no test coverage detected