| 44 | }; |
| 45 | |
| 46 | TEST_F( utVersion, aiGetLegalStringTest ) { |
| 47 | const char *lv = aiGetLegalString(); |
| 48 | EXPECT_NE( lv, nullptr ); |
| 49 | std::string text( lv ); |
| 50 | |
| 51 | size_t pos = text.find(std::string("2026")); |
| 52 | EXPECT_NE(pos, std::string::npos); |
| 53 | } |
| 54 | |
| 55 | TEST_F( utVersion, aiGetVersionMajorTest ) { |
| 56 | EXPECT_EQ( aiGetVersionMajor(), 6U ); |
nothing calls this directly
no test coverage detected