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