summaryrefslogtreecommitdiff
path: root/src/test/testtest.cpp
blob: 7f8d8cb57736d90ace0e637028bd8126d690ccf9 (plain)
1
2
3
4
5
6
7
8
9
10
#include "testtest.h"

#include <QObject>
#include <QTest>

void TestTest::initTestCase() { qDebug("initialising test"); }
void TestTest::myFirstTest() { QVERIFY(1 == 1); }
void TestTest::mySecondTest() { QVERIFY(1 != 2); }
void TestTest::cleanupTestCase() { qDebug("cleaning up test"); }