(t *testing.T)
| 77 | } |
| 78 | |
| 79 | func assertPanic(t *testing.T) { |
| 80 | if e := recover(); e == nil { |
| 81 | t.Error("Expected a panic.") |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | func assertEqual(t *testing.T, s1 *Selection, s2 *Selection) { |
| 86 | if s1 != s2 { |
no outgoing calls
no test coverage detected
searching dependent graphs…