mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-05 18:26:05 -04:00
Do not compare the version number for external SQLite3 libraries
This commit is contained in:
parent
bd5bf7996a
commit
a1510849f8
@ -34,6 +34,7 @@ void assertion_failed(const char* apFile, const long apLine, const char* apFunc,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef SQLITECPP_INTERNAL_SQLITE
|
||||||
TEST(SQLiteCpp, version)
|
TEST(SQLiteCpp, version)
|
||||||
{
|
{
|
||||||
EXPECT_STREQ(SQLITE_VERSION, SQLite::VERSION);
|
EXPECT_STREQ(SQLITE_VERSION, SQLite::VERSION);
|
||||||
@ -41,6 +42,7 @@ TEST(SQLiteCpp, version)
|
|||||||
EXPECT_STREQ(SQLITE_VERSION, SQLite::getLibVersion());
|
EXPECT_STREQ(SQLITE_VERSION, SQLite::getLibVersion());
|
||||||
EXPECT_EQ (SQLITE_VERSION_NUMBER, SQLite::getLibVersionNumber());
|
EXPECT_EQ (SQLITE_VERSION_NUMBER, SQLite::getLibVersionNumber());
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
TEST(Database, ctorExecCreateDropExist)
|
TEST(Database, ctorExecCreateDropExist)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user