(t *testing.T, s1 *Selection, s2 *Selection)
| 83 | } |
| 84 | |
| 85 | func assertEqual(t *testing.T, s1 *Selection, s2 *Selection) { |
| 86 | if s1 != s2 { |
| 87 | t.Error("Expected selection objects to be the same.") |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | func assertSelectionIs(t *testing.T, sel *Selection, is ...string) { |
| 92 | for i := 0; i < sel.Length(); i++ { |
no outgoing calls
no test coverage detected
searching dependent graphs…