TestIntegration_PostgreSQL_Simple tests simple PostgreSQL queries
(t *testing.T)
| 268 | |
| 269 | // TestIntegration_PostgreSQL_Simple tests simple PostgreSQL queries |
| 270 | func TestIntegration_PostgreSQL_Simple(t *testing.T) { |
| 271 | projectRoot, _ := filepath.Abs(filepath.Join("..", "..")) |
| 272 | files := loadSQLTestFiles(t, projectRoot) |
| 273 | |
| 274 | simplePostgres := filterFiles(files, "postgresql", "Simple") |
| 275 | if len(simplePostgres) == 0 { |
| 276 | t.Skip("No simple PostgreSQL test files found") |
| 277 | } |
| 278 | |
| 279 | runTestBatch(t, simplePostgres, "PostgreSQL Simple Queries") |
| 280 | } |
| 281 | |
| 282 | // TestIntegration_MySQL_Medium tests medium complexity MySQL queries |
| 283 | func TestIntegration_MySQL_Medium(t *testing.T) { |
nothing calls this directly
no test coverage detected