MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / TestIntegration_PostgreSQL_Simple

Function TestIntegration_PostgreSQL_Simple

pkg/sql/integration_test.go:270–280  ·  view source on GitHub ↗

TestIntegration_PostgreSQL_Simple tests simple PostgreSQL queries

(t *testing.T)

Source from the content-addressed store, hash-verified

268
269// TestIntegration_PostgreSQL_Simple tests simple PostgreSQL queries
270func 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
283func TestIntegration_MySQL_Medium(t *testing.T) {

Callers

nothing calls this directly

Calls 3

loadSQLTestFilesFunction · 0.85
filterFilesFunction · 0.85
runTestBatchFunction · 0.85

Tested by

no test coverage detected