| 10 | #include "server/Server.h" |
| 11 | |
| 12 | void ServerTests::SwitchToScreenInfo_alloc_screen() |
| 13 | { |
| 14 | auto actual = new Server::SwitchToScreenInfo("test"); |
| 15 | QCOMPARE(actual->m_screen, "test"); |
| 16 | delete actual; |
| 17 | } |
| 18 | |
| 19 | void ServerTests::KeyboardBroadcastInfo_alloc_stateAndSceens() |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected