(t *testing.T, ok bool)
| 70 | } |
| 71 | |
| 72 | func assertTrue(t *testing.T, ok bool) { |
| 73 | if !ok { |
| 74 | t.Error("value should be true") |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | func assertTypeOk(t *testing.T, ok bool, expectedType string) { |
| 79 | if !ok { |
no test coverage detected
searching dependent graphs…