diff --git a/robotgo_test.go b/robotgo_test.go index 33f73a7..e5e6e99 100644 --- a/robotgo_test.go +++ b/robotgo_test.go @@ -14,6 +14,7 @@ package robotgo import ( "fmt" + "log" "runtime" "testing" @@ -60,3 +61,8 @@ func TestScrollMouse(t *testing.T) { Scroll(210, 210) } + +func TestGetScreenSize(t *testing.T) { + x, y := GetScreenSize() + log.Println("GetScreenSize: ", x, y) +}