Unit testing template using QTestLib
[ptas] / tests / ut_template / ut_template.cpp
1 #include "ut_template.h"
2 #include <QtTest/QtTest>
3
4 void Ut_template::initTestCase()
5 {
6
7 }
8
9 void Ut_template::cleanupTestCase()
10 {
11
12 }
13
14 void Ut_template::init()
15 {
16
17 }
18
19 void Ut_template::cleanup()
20 {
21
22 }
23
24 QTEST_MAIN(Ut_template)