syscall_windows_test.go 225 B

123456789
  1. package system
  2. import "testing"
  3. func TestHasWin32KSupport(t *testing.T) {
  4. s := HasWin32KSupport() // make sure this doesn't panic
  5. t.Logf("win32k: %v", s) // will be different on different platforms -- informative only
  6. }