The testError is a value type error for ease of seeing results when the test fails.
| 195 | // The testError is a value type error for ease of seeing results |
| 196 | // when the test fails. |
| 197 | type testError struct { |
| 198 | message string |
| 199 | } |
| 200 | |
| 201 | func (e testError) Error() string { |
| 202 | return e.message |
nothing calls this directly
no outgoing calls
no test coverage detected