(t *testing.T, v1, v2 interface{})
| 14 | } |
| 15 | |
| 16 | func errorIfNotEqual(t *testing.T, v1, v2 interface{}) { |
| 17 | if v1 != v2 { |
| 18 | t.Errorf("%v '%v' expected, but got '%v'", positionString(1), v1, v2) |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | func errorIfFalse(t *testing.T, cond bool, msg string, args ...interface{}) { |
| 23 | if !cond { |
no test coverage detected
searching dependent graphs…