this gives our integration test a way of interacting with the gui for sending keypresses and reading state.
| 17 | // this gives our integration test a way of interacting with the gui for sending keypresses |
| 18 | // and reading state. |
| 19 | type GuiDriver struct { |
| 20 | gui *Gui |
| 21 | isIdleChan chan struct{} |
| 22 | toastChan chan string |
| 23 | headless bool |
| 24 | } |
| 25 | |
| 26 | var _ integrationTypes.GuiDriver = &GuiDriver{} |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected