Replace debug code by a real test

pull/4596/head
Kim Kulling 2022-06-28 20:38:36 +02:00 committed by GitHub
parent 3d692c72ba
commit f76be1a631
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ public:
bool importerTest() override {
Assimp::Importer importer;
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/OpenGEX/Example.ogex", 0);
printf("Number of meshes = %d\n", scene->mNumMeshes);
EXPECT_EQ(1u, scene->mNumMeshes);
return nullptr != scene;
}
};