(t *testing.T)
| 81 | } |
| 82 | |
| 83 | func TestMySQLTCP(t *testing.T) { |
| 84 | if testing.Short() { |
| 85 | t.Skip("skipping MySQL integration tests") |
| 86 | } |
| 87 | requireMySQLVars(t) |
| 88 | // Prepare the initial arguments |
| 89 | args := []string{*mysqlConnName} |
| 90 | // Add the IP type flag using the helper |
| 91 | args = AddIPTypeFlag(args) |
| 92 | // Run the test |
| 93 | proxyConnTest(t, args, "mysql", mysqlDSN()) |
| 94 | } |
| 95 | |
| 96 | func TestMySQLUnix(t *testing.T) { |
| 97 | if testing.Short() { |
nothing calls this directly
no test coverage detected