(self, keycode: int)
| 651 | return True |
| 652 | |
| 653 | def click_key(self, keycode: int) -> bool: |
| 654 | print(f" on MyController.click_key: {keycode}") |
| 655 | self.count += 1 |
| 656 | return True |
| 657 | |
| 658 | def input_text(self, text: str) -> bool: |
| 659 | print(f" on MyController.input_text: {text}") |
nothing calls this directly
no outgoing calls
no test coverage detected