znone
2019-06-16 ebd997c5ce55fd260696f9bb117f1f06c09a4759
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef _TEST_MYSQL_H_
#define _TEST_MYSQL_H_
 
#include "TestSuite.h"
 
namespace qtl
{
    namespace mysql
    {
        class database;
    }
}
 
class TestMysql : public TestSuite
{
public:
    TestMysql();
 
private:
    void test_dual();
    void test_clear();
    void test_insert();
    void test_select();
    void test_update();
    void test_insert2();
    void test_iterator();
    void test_insert_blob();
    void test_select_blob();
    void test_insert_stream();
    void test_fetch_stream();
 
private:
    uint32_t id;
    void connect(qtl::mysql::database& db);
    void get_md5(std::istream& is, unsigned char* result);
};
 
#endif //_TEST_MYSQL_H_