(t *testing.T)
| 1418 | } |
| 1419 | |
| 1420 | func TestSplitPath(t *testing.T) { |
| 1421 | t.Parallel() |
| 1422 | if p := splitPath(""); p != nil { |
| 1423 | t.Fatalf("expected nil, got: %v", p) |
| 1424 | } |
| 1425 | } |
| 1426 | |
| 1427 | func TestGetGOPATHs(t *testing.T) { |
| 1428 | // This test cannot run in parallel. |
nothing calls this directly
no test coverage detected
searching dependent graphs…