mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-01 19:07:38 +03:00
14 lines
192 B
Go
14 lines
192 B
Go
//go:build windows
|
|
|
|
package windnsapi
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestDNSAPI(t *testing.T) {
|
|
t.Parallel()
|
|
require.NoError(t, FlushResolverCache())
|
|
}
|