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

#include "QtTestUtil/QtTestUtil.h"

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

		void cleanupTestCase() {
		}

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

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