(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func TestPanicFormattingIntValue(t *testing.T) { |
| 34 | assertPanicMessage(t, func() { panic(1234) }, "1234") |
| 35 | } |
| 36 | |
| 37 | func TestPanicFormattingCustomError(t *testing.T) { |
| 38 | type CustomError struct{ error } |
nothing calls this directly
no test coverage detected
searching dependent graphs…