(t *testing.T)
| 50 | } |
| 51 | |
| 52 | func TestSQLServerTCP(t *testing.T) { |
| 53 | if testing.Short() { |
| 54 | t.Skip("skipping SQL Server integration tests") |
| 55 | } |
| 56 | requireSQLServerVars(t) |
| 57 | // Prepare the initial arguments |
| 58 | args := []string{*sqlserverConnName} |
| 59 | // Add the IP type flag using the helper |
| 60 | args = AddIPTypeFlag(args) |
| 61 | // Run the test |
| 62 | proxyConnTest(t, args, "sqlserver", sqlserverDSN()) |
| 63 | } |
| 64 | |
| 65 | func TestSQLServerImpersonation(t *testing.T) { |
| 66 | if testing.Short() { |
nothing calls this directly
no test coverage detected