summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/test/database/databaseTest.h
blob: d7fb36f3463530125600aa8bb449ea83fa787798 (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
38
39
/*
 * 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:
	databaseTest();
	~databaseTest();

	DatabaseHandler pDatabaseHandler;
	CommonFunctions pCF;

	void SetUp();
	void TearDown();

	void createMainConnectionSetup();
};

#endif /* DATABASETEST_H_ */