(t *testing.T)
| 27 | } |
| 28 | |
| 29 | func TestPanicFormattingStringValue(t *testing.T) { |
| 30 | assertPanicMessage(t, func() { panic("Panic time!") }, "Panic time!") |
| 31 | } |
| 32 | |
| 33 | func TestPanicFormattingIntValue(t *testing.T) { |
| 34 | assertPanicMessage(t, func() { panic(1234) }, "1234") |
nothing calls this directly
no test coverage detected
searching dependent graphs…