(t *testing.T)
| 78 | } |
| 79 | |
| 80 | func TestZtestSuperSQL(t *testing.T) { |
| 81 | queries, err := searchForSuperSQL() |
| 82 | require.NoError(t, err) |
| 83 | for _, q := range queries { |
| 84 | testQuery(t, q) |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | func TestInvalid(t *testing.T) { |
| 89 | file, err := fs.Open("invalid.spq") |
nothing calls this directly
no test coverage detected