(t *testing.T)
| 68 | } |
| 69 | |
| 70 | func TestValid(t *testing.T) { |
| 71 | file, err := fs.Open("valid.spq") |
| 72 | require.NoError(t, err) |
| 73 | scanner := bufio.NewScanner(file) |
| 74 | for scanner.Scan() { |
| 75 | line := scanner.Bytes() |
| 76 | testQuery(t, string(line)) |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | func TestZtestSuperSQL(t *testing.T) { |
| 81 | queries, err := searchForSuperSQL() |
nothing calls this directly
no test coverage detected