From df9f92b955ceb18a89b68dacdc3a2ab820a36123 Mon Sep 17 00:00:00 2001 From: Aleks Kissinger Date: Sun, 22 Jan 2017 14:19:41 +0100 Subject: parsing --- tikzit/src/test/testtest.cpp | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) (limited to 'tikzit/src/test/testtest.cpp') diff --git a/tikzit/src/test/testtest.cpp b/tikzit/src/test/testtest.cpp index c6de586..59173c0 100644 --- a/tikzit/src/test/testtest.cpp +++ b/tikzit/src/test/testtest.cpp @@ -1,17 +1,10 @@ +#include "testtest.h" + #include #include -class TestTest: public QObject -{ - Q_OBJECT -private slots: - void initTestCase() - { qDebug("initialising test"); } - void myFirstTest() - { QVERIFY(1 == 1); } - void mySecondTest() - { QVERIFY(1 != 2); } - void cleanupTestCase() - { qDebug("cleaning up test"); } -}; +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"); } -- cgit v1.2.3