(t *testing.T, expected, actual []string)
| 252 | } |
| 253 | |
| 254 | func compareStringList(t *testing.T, expected, actual []string) { |
| 255 | for i, v := range expected { |
| 256 | if actual[i] != v { |
| 257 | t.Fatalf("Bad list") |
| 258 | } |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | func checkRefType(t *testing.T, ref *Reference, kind ReferenceType) { |
| 263 | if ref.Type() == kind { |
no outgoing calls
no test coverage detected
searching dependent graphs…