1 #include "../common.h" 2 #include "HandlerTest.h" 3 #include "BHandlerTester.h" 4 #include "IsWatchedTest.h" 5 #include "HandlerLooperTest.h" 6 #include "SetNextHandlerTest.h" 7 #include "NextHandlerTest.h" 8 #include "AddFilterTest.h" 9 #include "RemoveFilterTest.h" 10 #include "SetFilterListTest.h" 11 #include "LockLooperTest.h" 12 #include "LockLooperWithTimeoutTest.h" 13 #include "UnlockLooperTest.h" 14 15 Test* HandlerTestSuite(void) 16 { 17 TestSuite* tests = new TestSuite(); 18 19 tests->addTest(TBHandlerTester::Suite()); 20 tests->addTest(TIsWatchedTest::Suite()); 21 tests->addTest(TLooperTest::Suite()); 22 tests->addTest(TSetNextHandlerTest::Suite()); 23 tests->addTest(TNextHandlerTest::Suite()); 24 tests->addTest(TAddFilterTest::Suite()); 25 tests->addTest(TRemoveFilterTest::Suite()); 26 tests->addTest(TSetFilterListTest::Suite()); 27 tests->addTest(TLockLooperTest::Suite()); 28 tests->addTest(TLockLooperWithTimeoutTest::Suite()); 29 tests->addTest(TUnlockLooperTest::Suite()); 30 31 return tests; 32 } 33