| 99 | }; |
| 100 | |
| 101 | TEST(ControllerThread, GetController) { |
| 102 | auto controller = std::make_shared<SimpleController>(); |
| 103 | ControllerThread<SimpleController> thread(controller); |
| 104 | EXPECT_EQ(thread.GetController(), controller); |
| 105 | } |
| 106 | |
| 107 | TEST(ControllerThread, RunExecutesControllerRun) { |
| 108 | auto controller = std::make_shared<SimpleController>(); |
nothing calls this directly
no test coverage detected