summaryrefslogtreecommitdiffstats
blob: c82eb5f162809a1e490119323e2d8ece79e1ba8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <QObject>
#include <QtTest/QtTest>

#include "QtTestUtil/QtTestUtil.h"

class MyFirstClassTest : public QObject
{
     Q_OBJECT
	
	private slots:
		void initTestCase() {
		}

		void cleanupTestCase() {
		}

		void testMyMethod() {
			QCOMPARE(1, 1); // Dummy test
		}
};

QTTESTUTIL_REGISTER_TEST(MyFirstClassTest);
#include "MyFirstClassTest.moc"