91a2b47b7cfaff1531515fc0588c19c2823868fe
[ptas] / tests / ut_template / ut_template.h
1 #ifndef UT_TEMPLATE_H
2 #define UT_TEMPLATE_H
3
4 #include <QObject>
5
6 class Ut_template : public QObject
7 {
8     Q_OBJECT
9
10 private slots:
11     // Will be called before the first testfunction is executed.
12     void initTestCase();
13     // Will be called after the last testfunction was executed.
14     void cleanupTestCase();
15     // Will be called before each testfunction is executed.
16     void init();
17     // Will be called after every testfunction.
18     void cleanup();
19
20 };
21
22 #endif // UT_TEMPLATE_H