Adding BPropertyInfo tests to the app kit test suite.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@629 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
jrand 2002-08-07 05:14:09 +00:00
parent 3208425015
commit cc3a5fd2c2
2 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include "blooper/LooperTest.h"
#include "bmessagequeue/MessageQueueTest.h"
#include "bmessenger/MessengerTest.h"
#include "bpropertyinfo/PropertyInfoTest.h"
BTestSuite* getTestSuite() {
BTestSuite *suite = new BTestSuite("App");
@ -17,6 +18,7 @@ BTestSuite* getTestSuite() {
suite->addTest("BLooper", LooperTestSuite());
suite->addTest("BMessageQueue", MessageQueueTestSuite());
suite->addTest("BMessenger", MessengerTestSuite());
suite->addTest("BPropertyInfo", PropertyInfoTestSuite());
return suite;
}

View File

@ -6,6 +6,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) bhandler ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) blooper ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessagequeue ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bmessenger ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) bpropertyinfo ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) common ] ;
CommonTestLib libapptest.so
@ -71,6 +72,10 @@ CommonTestLib libapptest.so
SMTarget.cpp
TargetTester.cpp
# BPropertyInfo
PropertyConstructionTest1.cpp
PropertyInfoTest.cpp
# common
AppRunner.cpp
PipedAppRunner.cpp