Adding BPropertyInfo tests to CVS

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@799 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
jrand 2002-08-18 03:45:43 +00:00
parent d081dee68d
commit 25a9178631
2 changed files with 10 additions and 3 deletions

View File

@ -74,7 +74,10 @@ CommonTestLib libapptest.so
TargetTester.cpp TargetTester.cpp
# BPropertyInfo # BPropertyInfo
PropertyConstructionTest1.cpp PropertyTestcase.cpp
PropertyConstructionTest.cpp
PropertyFindMatchTest.cpp
PropertyFlattenTest.cpp
PropertyInfoTest.cpp PropertyInfoTest.cpp
# BRoster # BRoster

View File

@ -1,11 +1,15 @@
#include "../common.h" #include "../common.h"
#include "PropertyConstructionTest1.h" #include "PropertyConstructionTest.h"
#include "PropertyFindMatchTest.h"
#include "PropertyFlattenTest.h"
Test *PropertyInfoTestSuite() Test *PropertyInfoTestSuite()
{ {
TestSuite *testSuite = new TestSuite(); TestSuite *testSuite = new TestSuite();
testSuite->addTest(PropertyConstructionTest1::suite()); testSuite->addTest(PropertyConstructionTest::suite());
testSuite->addTest(PropertyFindMatchTest::suite());
testSuite->addTest(PropertyFlattenTest::suite());
return(testSuite); return(testSuite);
} }