(t *testing.T, object interface{}, name string)
| 64 | } |
| 65 | |
| 66 | func assertNotNil(t *testing.T, object interface{}, name string) { |
| 67 | if object == nil { |
| 68 | t.Errorf("missing object: %s", name) |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | func assertTrue(t *testing.T, ok bool) { |
| 73 | if !ok { |
no outgoing calls
no test coverage detected
searching dependent graphs…