TestIntegration_MySQL_Medium tests medium complexity MySQL queries
(t *testing.T)
| 281 | |
| 282 | // TestIntegration_MySQL_Medium tests medium complexity MySQL queries |
| 283 | func TestIntegration_MySQL_Medium(t *testing.T) { |
| 284 | projectRoot, _ := filepath.Abs(filepath.Join("..", "..")) |
| 285 | files := loadSQLTestFiles(t, projectRoot) |
| 286 | |
| 287 | mediumMySQL := filterFiles(files, "mysql", "Medium") |
| 288 | if len(mediumMySQL) == 0 { |
| 289 | t.Skip("No medium MySQL test files found") |
| 290 | } |
| 291 | |
| 292 | runTestBatch(t, mediumMySQL, "MySQL Medium Queries") |
| 293 | } |
| 294 | |
| 295 | // TestIntegration_RealWorld_Complex tests complex real-world queries |
| 296 | func TestIntegration_RealWorld_Complex(t *testing.T) { |
nothing calls this directly
no test coverage detected