blob: 3255b71254129a56b590951a8fb16f572c2a788a (
plain)
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
|
/*
* databasetest.h
*
* Created on: Dec 6, 2011
* Author: christian
*/
#ifndef DATABASETEST_H_
#define DATABASETEST_H_
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <dlt/dlt.h>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include "DatabaseHandler.h"
#include "../CommonFunctions.h"
DLT_DECLARE_CONTEXT(AudioManager)
using namespace testing;
class databaseTest : public Test {
public:
DatabaseHandler pDatabaseHandler;
CommonFunctions pCF;
void SetUp();
void TearDown();
void createMainConnectionSetup();
};
#endif /* DATABASETEST_H_ */
|