summaryrefslogtreecommitdiff
path: root/src/test/testtest.cpp
blob: 59173c0d62a239077d3035a26953b68a0f15b93f (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"); }