diff --git a/src/tests/kits/app/AppKitTestAddon.cpp b/src/tests/kits/app/AppKitTestAddon.cpp index 7f00c2eb41..91080d2d65 100644 --- a/src/tests/kits/app/AppKitTestAddon.cpp +++ b/src/tests/kits/app/AppKitTestAddon.cpp @@ -8,6 +8,7 @@ #include "bmessagequeue/MessageQueueTest.h" #include "bmessenger/MessengerTest.h" #include "bpropertyinfo/PropertyInfoTest.h" +#include "broster/RosterTest.h" BTestSuite* getTestSuite() { BTestSuite *suite = new BTestSuite("App"); @@ -19,6 +20,7 @@ BTestSuite* getTestSuite() { suite->addTest("BMessageQueue", MessageQueueTestSuite()); suite->addTest("BMessenger", MessengerTestSuite()); suite->addTest("BPropertyInfo", PropertyInfoTestSuite()); + suite->addTest("BRoster", RosterTestSuite()); return suite; } diff --git a/src/tests/kits/app/Jamfile b/src/tests/kits/app/Jamfile index d04c73d037..d5a471dae7 100644 --- a/src/tests/kits/app/Jamfile +++ b/src/tests/kits/app/Jamfile @@ -7,6 +7,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) blooper ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessagequeue ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessenger ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) bpropertyinfo ] ; +SEARCH_SOURCE += [ FDirName $(SUBDIR) broster ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) common ] ; CommonTestLib libapptest.so @@ -75,7 +76,11 @@ CommonTestLib libapptest.so # BPropertyInfo PropertyConstructionTest1.cpp PropertyInfoTest.cpp - + + # BRoster + RosterTest.cpp + IsRunningTester.cpp + # common AppRunner.cpp PipedAppRunner.cpp