Add unit-test for STL format auto detection
parent
95d9c16a3b
commit
b25975af48
|
@ -80,6 +80,12 @@ TEST_F(utSTLImporterExporter, test_multiple) {
|
|||
EXPECT_NE(nullptr, scene2);
|
||||
}
|
||||
|
||||
TEST_F(utSTLImporterExporter, importSTLformatdetection) {
|
||||
::Assimp::Importer importer;
|
||||
const aiScene *scene = importer.ReadFile(ASSIMP_TEST_MODELS_DIR "/STL/formatDetection", aiProcess_ValidateDataStructure);
|
||||
|
||||
EXPECT_NE(nullptr, scene);
|
||||
}
|
||||
|
||||
TEST_F( utSTLImporterExporter, test_with_two_solids ) {
|
||||
Assimp::Importer importer;
|
||||
|
|
Loading…
Reference in New Issue