(t *testing.T, wg *WireGuard)
| 215 | } |
| 216 | |
| 217 | func startWGHTTPServer(t *testing.T, wg *WireGuard) (url string, serverIP string) { |
| 218 | t.Helper() |
| 219 | |
| 220 | serverIP = wireGuardServerIP(t, wg) |
| 221 | url = startWGHTTPServerAtIP(t, serverIP) |
| 222 | return url, serverIP |
| 223 | } |
| 224 | |
| 225 | func mustGeneratePrivateKey(t *testing.T) string { |
| 226 | t.Helper() |
no test coverage detected