(t *testing.T)
| 56 | } |
| 57 | |
| 58 | func TestAssertBareItem(t *testing.T) { |
| 59 | t.Parallel() |
| 60 | |
| 61 | defer func() { |
| 62 | if r := recover(); r == nil { |
| 63 | t.Errorf("The code did not panic") |
| 64 | } |
| 65 | }() |
| 66 | |
| 67 | assertBareItem(time.Second) |
| 68 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…