(t *testing.T)
| 150 | } |
| 151 | |
| 152 | func TestNotContains(t *testing.T) { |
| 153 | |
| 154 | NotContains(t, "Hello World", "Hello!") |
| 155 | |
| 156 | mockT := new(MockT) |
| 157 | NotContains(mockT, "Hello World", "Hello") |
| 158 | if !mockT.Failed { |
| 159 | t.Error("Check should fail") |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | func TestPanics(t *testing.T) { |
| 164 |
nothing calls this directly
no test coverage detected
searching dependent graphs…