| 20 | using ObjImportTest = ModelTest; |
| 21 | |
| 22 | TEST_F(ModelTest, LwoPolyCount) |
| 23 | { |
| 24 | auto model = GlobalModelCache().getModel("models/darkmod/test/unit_cube.lwo"); |
| 25 | EXPECT_TRUE(model); |
| 26 | |
| 27 | // The unit cube should have 12 polys (6 quads = 12 tris) |
| 28 | EXPECT_EQ(model->getPolyCount(), 12); |
| 29 | } |
| 30 | |
| 31 | TEST_F(ModelTest, AsePolyCount) |
| 32 | { |
nothing calls this directly
no test coverage detected