mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
11 lines
232 B
Go
11 lines
232 B
Go
package netenv
|
|
|
|
import "testing"
|
|
|
|
func TestWindowsEnvironment(t *testing.T) {
|
|
defaultIf := getDefaultInterface()
|
|
if defaultIf == nil {
|
|
t.Error("failed to get default interface")
|
|
}
|
|
t.Logf("default interface: %+v", defaultIf)
|
|
}
|