summaryrefslogtreecommitdiff
path: root/src/test/testtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/testtest.cpp')
-rw-r--r--src/test/testtest.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/testtest.cpp b/src/test/testtest.cpp
new file mode 100644
index 0000000..59173c0
--- /dev/null
+++ b/src/test/testtest.cpp
@@ -0,0 +1,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"); }
+