(t *testing.T, a ast.Atom)
| 69 | } |
| 70 | |
| 71 | func makeSyntheticDecl(t *testing.T, a ast.Atom) ast.Decl { |
| 72 | t.Helper() |
| 73 | decl, err := ast.NewSyntheticDecl(a) |
| 74 | if err != nil { |
| 75 | t.Fatal(err) |
| 76 | } |
| 77 | return decl |
| 78 | } |
| 79 | |
| 80 | func TestCases(t *testing.T) { |
| 81 | entries, err := testCases.ReadDir("test_cases") |
no test coverage detected