diff options
Diffstat (limited to 'src/tests/protocolhandler_test.cpp')
-rw-r--r-- | src/tests/protocolhandler_test.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/tests/protocolhandler_test.cpp b/src/tests/protocolhandler_test.cpp index 13e4212c..d738baea 100644 --- a/src/tests/protocolhandler_test.cpp +++ b/src/tests/protocolhandler_test.cpp @@ -21,9 +21,10 @@ #include <qtest_kde.h> -#include <QtTest> #include <QtCore> -#include <QtWebKit> +#include <QtGui> +#include <QtTest> + #include "protocolhandler.h" @@ -48,11 +49,13 @@ private: void ProtocolhandlerTest::initTestCase() { + handler = new ProtocolHandler; } void ProtocolhandlerTest::cleanupTestCase() { + delete handler; } @@ -61,5 +64,5 @@ void ProtocolhandlerTest::cleanupTestCase() // ------------------------------------------- -QTEST_MAIN(ProtocolhandlerTest) +QTEST_KDEMAIN(ProtocolhandlerTest,GUI) #include "protocolhandler_test.moc" |