parent
dd2b57f2b9
commit
c031785b2f
|
@ -48,18 +48,18 @@ TEST_F( utVersion, aiGetLegalStringTest ) {
|
||||||
EXPECT_NE( lv, nullptr );
|
EXPECT_NE( lv, nullptr );
|
||||||
std::string text( lv );
|
std::string text( lv );
|
||||||
|
|
||||||
size_t pos = text.find(std::string("2023"));
|
size_t pos = text.find(std::string("2024"));
|
||||||
EXPECT_NE(pos, std::string::npos);
|
EXPECT_NE(pos, std::string::npos);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F( utVersion, aiGetVersionMinorTest ) {
|
|
||||||
EXPECT_EQ(aiGetVersionMinor(), 3U);
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_F( utVersion, aiGetVersionMajorTest ) {
|
TEST_F( utVersion, aiGetVersionMajorTest ) {
|
||||||
EXPECT_EQ( aiGetVersionMajor(), 5U );
|
EXPECT_EQ( aiGetVersionMajor(), 5U );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_F( utVersion, aiGetVersionMinorTest ) {
|
||||||
|
EXPECT_EQ(aiGetVersionMinor(), 4U);
|
||||||
|
}
|
||||||
|
|
||||||
TEST_F( utVersion, aiGetVersionPatchTest ) {
|
TEST_F( utVersion, aiGetVersionPatchTest ) {
|
||||||
EXPECT_EQ(aiGetVersionPatch(), 0U );
|
EXPECT_EQ(aiGetVersionPatch(), 0U );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue