mirror of
https://github.com/safing/portmaster
synced 2025-04-19 10:29:11 +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)
|
|
}
|