| 69 | using StringMap = std::map<std::string, std::string>; |
| 70 | |
| 71 | TEST_F(EntityTest, CannotCreateEntityWithoutClass) |
| 72 | { |
| 73 | // Creating with a null entity class should throw an exception |
| 74 | EXPECT_THROW(GlobalEntityModule().createEntity({}), std::runtime_error); |
| 75 | } |
| 76 | |
| 77 | TEST_F(EntityTest, CreateBasicLightEntity) |
| 78 | { |
nothing calls this directly
no test coverage detected