init and cleanup methods
[emufront] / testing / EmuFrontTesting / dbplatformtest.cpp
1 #include "dbplatformtest.h"
2
3 void DbPlatformTest::init()
4 {
5     // open db
6 }
7
8 void DbPlatformTest::cleanup()
9 {
10     // close db
11 }
12
13 void DbPlatformTest::initTestCase()
14 {
15     // initialize test data
16 }
17
18 void DbPlatformTest::cleanupTestCase()
19 {
20     // cleanup test data
21 }
22
23