//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") }