| 64 | }; |
| 65 | |
| 66 | TEST_F(TestMaterial, TestInstallation) |
| 67 | { |
| 68 | ASSERT_NE(_modelManager, nullptr); |
| 69 | |
| 70 | // We should have loaded at least the system library |
| 71 | auto libraries = _materialManager->getLibraries(); |
| 72 | ASSERT_GT(libraries->size(), 0); |
| 73 | |
| 74 | // We should have at least one material |
| 75 | auto materials = _materialManager->getLocalMaterials(); |
| 76 | ASSERT_GT(materials->size(), 0); |
| 77 | } |
| 78 | |
| 79 | TEST_F(TestMaterial, TestMaterialsWithModel) |
| 80 | { |
nothing calls this directly
no test coverage detected