GH #440 MongoDB ObjectId string formatting

This commit is contained in:
Alex Fabijanic
2014-05-08 21:35:56 -05:00
parent 74176f7c90
commit 556d8cf1c4
5 changed files with 103 additions and 70 deletions

View File

@@ -30,50 +30,28 @@ public:
virtual ~MongoDBTest();
void testInsertRequest();
void testQueryRequest();
void testDBQueryRequest();
void testCountCommand();
void testDBCountCommand();
void testDBCount2Command();
void testDeleteRequest();
void testBuildInfo();
void testConnectionPool();
void testCursorRequest();
void testObjectID();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
bool _connected;
Poco::MongoDB::Connection _mongo;
std::string _host;
unsigned _port;
static bool _connected;
static Poco::MongoDB::Connection _mongo;
};