Lines Matching refs:PathForTesting
25 a := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("a")).Build()
26 b := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("b")).Transitive(a).Build()
27 c := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("c")).Transitive(a).Build()
28 d := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("d")).Transitive(b, c).Build()
35 a := NewDepSetBuilder(PREORDER).Direct(PathForTesting("a")).Build()
36 b := NewDepSetBuilder(PREORDER).Direct(PathForTesting("b")).Transitive(a).Build()
37 c := NewDepSetBuilder(PREORDER).Direct(PathForTesting("c")).Transitive(a).Build()
38 d := NewDepSetBuilder(PREORDER).Direct(PathForTesting("d")).Transitive(b, c).Build()
45 a := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("a")).Build()
46 b := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("b")).Transitive(a).Build()
47 c := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("c")).Transitive(a).Build()
48 d := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("d")).Transitive(b, c).Build()
55 a := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("a")).Build()
56 b := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("b")).Transitive(a).Build()
57 c := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("c")).Transitive(a).Build()
58 d := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("d")).Transitive(b, c).Build()
67 a := PathForTesting("a")
68 b := PathForTesting("b")
69 c := PathForTesting("c")
70 c2 := PathForTesting("c2")
71 d := PathForTesting("d")
72 e := PathForTesting("e")