From ce088d7b5cd7d4f0702a12938d9cf9733c1e48db Mon Sep 17 00:00:00 2001 From: shadow303 Date: Sat, 9 Nov 2002 01:02:08 +0000 Subject: [PATCH] Add clipboard and cursor test stuff git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1884 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tests/kits/app/AppKitTestAddon.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tests/kits/app/AppKitTestAddon.cpp b/src/tests/kits/app/AppKitTestAddon.cpp index 163132bbe4..f565b628bd 100644 --- a/src/tests/kits/app/AppKitTestAddon.cpp +++ b/src/tests/kits/app/AppKitTestAddon.cpp @@ -3,6 +3,8 @@ // ##### Include headers for your tests here ##### #include "bapplication/ApplicationTest.h" +#include "bclipboard/ClipboardTest.h" +#include "bcursor/CursorTest.h" #include "bhandler/HandlerTest.h" #include "blooper/LooperTest.h" #include "bmessagequeue/MessageQueueTest.h" @@ -17,6 +19,8 @@ BTestSuite* getTestSuite() { // ##### Add test suites here ##### suite->addTest("BApplication", ApplicationTestSuite()); + suite->addTest("BClipboard", ClipboardTestSuite()); + suite->addTest("BCursor", CursorTestSuite()); suite->addTest("BHandler", HandlerTestSuite()); suite->addTest("BLooper", LooperTestSuite()); suite->addTest("BMessageQueue", MessageQueueTestSuite());