()
| 13 | |
| 14 | |
| 15 | def generate_input(): |
| 16 | circle = tuple(generate_circle_points(180, 0x6fff, pi/2)) |
| 17 | yield from iter(circle) |
| 18 | # Circle the pointer around the screen, starting from near the bottom |
| 19 | |
| 20 | yield from itertools.repeat(circle[0], 120) |
| 21 | # Hold the pointer in place for a bit |
| 22 | |
| 23 | yield Pointer(circle[0].x, circle[0].y, True) |
| 24 | # Touch the screen at the current pointer position |
| 25 | |
| 26 | yield from itertools.repeat(circle[0]) |
| 27 | |
| 28 | |
| 29 | session: Session |
nothing calls this directly
no test coverage detected