(sandbox: Sandbox)
| 58 | |
| 59 | |
| 60 | def test_get_cursor_position(sandbox: Sandbox): |
| 61 | pos = sandbox.get_cursor_position() |
| 62 | assert pos == ( |
| 63 | 512, |
| 64 | 384, |
| 65 | ), f"Expected cursor position to be (512, 384), but got {pos}" |
| 66 | |
| 67 | |
| 68 | def test_get_screen_size(sandbox: Sandbox): |
nothing calls this directly
no test coverage detected