| 153 | }; |
| 154 | |
| 155 | TEST_F(SceneTest, Constructor) |
| 156 | { |
| 157 | const std::string id = "asd89263"; |
| 158 | expectGetState(id); |
| 159 | const Scene scene(id, commands, std::chrono::seconds(0), nullptr); |
| 160 | EXPECT_EQ(id, scene.getId()); |
| 161 | } |
| 162 | |
| 163 | TEST_F(SceneTest, getName) |
| 164 | { |
nothing calls this directly
no test coverage detected