xref: /haiku/src/tests/kits/app/blooper/LooperTest.cpp (revision 77a6586a2e7fac126a666d922463276bef239277)
1 //#include "LooperTest.h"
2 #include "../common.h"
3 #include "IsMessageWaitingTest.h"
4 #include "RemoveHandlerTest.h"
5 #include "IndexOfTest.h"
6 #include "CountHandlersTest.h"
7 #include "HandlerAtTest.h"
8 #include "AddHandlerTest.h"
9 #include "PerformTest.h"
10 #include "RunTest.h"
11 #include "LooperForThreadTest.h"
12 #include "AddCommonFilterTest.h"
13 #include "RemoveCommonFilterTest.h"
14 #include "LooperSizeTest.h"
15 #include "SetCommonFilterListTest.h"
16 #include "QuitTest.h"
17 
LooperTestSuite()18 Test* LooperTestSuite()
19 {
20 	TestSuite* tests = new TestSuite();
21 
22 	tests->addTest(TIsMessageWaitingTest::Suite());
23 	tests->addTest(TRemoveHandlerTest::Suite());
24 	tests->addTest(TIndexOfTest::Suite());
25 	tests->addTest(TCountHandlersTest::Suite());
26 	tests->addTest(THandlerAtTest::Suite());
27 	tests->addTest(TAddHandlerTest::Suite());
28 	tests->addTest(TPerformTest::Suite());
29 	tests->addTest(TRunTest::Suite());
30 	tests->addTest(TLooperForThreadTest::Suite());
31 	tests->addTest(TAddCommonFilterTest::Suite());
32 	tests->addTest(TRemoveCommonFilterTest::Suite());
33 	tests->addTest(TLooperSizeTest::Suite());
34 	tests->addTest(TSetCommonFilterListTest::Suite());
35 	tests->addTest(TQuitTest::Suite());
36 
37 	return tests;
38 }
39 
40