hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
MySQLSessionTests.h
Go to the documentation of this file.
1 #ifndef MYSQL_SESSION_TESTS
2 #define MYSQL_SESSION_TESTS
3 
4 #include <DataBaseSessionTest.h>
5 
6 using namespace Poco::Data;
7 
8 #define CORRECT_PARAMETERS_MySQL "host=localhost;user=root;password=7264260;db=test;compress=true;auto-reconnect=true"
9 #define INCORRECT_PARAMETERS_MySQL "host=localhost;user=root;password=7264260;db=incorrect_test;compress=true;auto-reconnect=true"
10 
12 public:
15 protected:
16  void SetUp ();
17  void TearDown ();
18  void TestBody();
19 };
20 
21 #endif