mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
16 lines
232 B
Go
16 lines
232 B
Go
package windnsapi
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestDNSAPI(t *testing.T) {
|
|
if runtime.GOOS != "windows" {
|
|
t.SkipNow()
|
|
}
|
|
t.Parallel()
|
|
require.NoError(t, FlushResolverCache())
|
|
}
|