| 48 | }; |
| 49 | |
| 50 | TEST_F( AssimpAPITest, aiGetImporterDescTest ) { |
| 51 | const aiImporterDesc *desc( nullptr ); |
| 52 | desc = aiGetImporterDesc(nullptr); |
| 53 | EXPECT_EQ(nullptr, desc); |
| 54 | |
| 55 | desc = aiGetImporterDesc( "obj" ); |
| 56 | EXPECT_TRUE(nullptr != desc); |
| 57 | } |
| 58 | |
| 59 | TEST_F( AssimpAPITest, aiGetLastErrorTest ) { |
| 60 | const char *error = aiGetErrorString(); |
nothing calls this directly
no test coverage detected