| 24 | ) |
| 25 | |
| 26 | type testError struct { |
| 27 | expected int |
| 28 | got uint32 |
| 29 | } |
| 30 | |
| 31 | func (h *testError) Error() string { |
| 32 | return fmt.Sprintf("expected the main handler to be executed %d times instead of %d", h.expected, h.got) |
nothing calls this directly
no outgoing calls
no test coverage detected