(t *testing.T, g depgraph.DependencyGraph)
| 12 | ) |
| 13 | |
| 14 | func mustAdjacency(t *testing.T, g depgraph.DependencyGraph) map[string][]string { |
| 15 | t.Helper() |
| 16 | adj, err := depgraph.AdjacencyList(g) |
| 17 | require.NoError(t, err) |
| 18 | return adj |
| 19 | } |
| 20 | |
| 21 | func TestBuildDependencyGraph(t *testing.T) { |
| 22 | // Create temporary directory with test files |
no test coverage detected