(t *testing.T)
| 30 | } |
| 31 | |
| 32 | func TestDrop(t *testing.T) { |
| 33 | simpleDropCase := engineDBContentTestSuite{ |
| 34 | inputs: []string{ |
| 35 | "CREATE TABLE tb1( one TEXT, two INT, three INT, four TEXT );", |
| 36 | "DROP TABLE tb1;", |
| 37 | }, |
| 38 | expectedTableNames: []string{}, |
| 39 | } |
| 40 | simpleDropCase.runTestSuite(t) |
| 41 | } |
| 42 | |
| 43 | func TestSelectCommand(t *testing.T) { |
| 44 | engineTestSuite := engineTableContentTestSuite{ |
nothing calls this directly
no test coverage detected