blob: 9bbd24cf864db9d14834239de4e5cd7b1244cca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//go:build linux && integration
package wireguard
import (
"testing"
)
func TestWireGuardDeviceBinding(t *testing.T) {
// Test that the userspace WireGuard device is correctly bound to the Linux TUN device.
t.Skip("not implemented")
}
func TestIpcSetConfiguration(t *testing.T) {
// Test that IpcSet correctly updates the WireGuard device keys and endpoints.
t.Skip("not implemented")
}
|