mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 17:56:13 -04:00
Cleanup unit test for Variadic bind()
This commit is contained in:
parent
3e56274e69
commit
390efbd301
@ -17,16 +17,12 @@
|
|||||||
|
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
|
|
||||||
//this requires c++14. seems like visual studio 2015 should work (yet untested).
|
// this requires c++14. visual studio 2015 is working
|
||||||
#if ( __cplusplus>= 201402L) || ( defined(_MSC_VER) && (_MSC_VER >= 1900) )
|
#if ( __cplusplus>= 201402L) || ( defined(_MSC_VER) && (_MSC_VER >= 1900) )
|
||||||
|
|
||||||
TEST(VariadicBind, invalid) {
|
TEST(VariadicBind, invalid) {
|
||||||
// Create a new database
|
// Create a new database
|
||||||
#if 0
|
|
||||||
SQLite::Database db("variadic_bind_test.db3", SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE);
|
|
||||||
#else
|
|
||||||
SQLite::Database db(":memory:", SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE);
|
SQLite::Database db(":memory:", SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE);
|
||||||
#endif
|
|
||||||
|
|
||||||
EXPECT_EQ(0, db.exec("DROP TABLE IF EXISTS test"));
|
EXPECT_EQ(0, db.exec("DROP TABLE IF EXISTS test"));
|
||||||
EXPECT_EQ(0,
|
EXPECT_EQ(0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user