1 #include "../common.h" 2 #include "PropertyConstructionTest.h" 3 #include "PropertyFindMatchTest.h" 4 #include "PropertyFlattenTest.h" 5 6 Test *PropertyInfoTestSuite() 7 { 8 TestSuite *testSuite = new TestSuite(); 9 10 testSuite->addTest(PropertyConstructionTest::suite()); 11 testSuite->addTest(PropertyFindMatchTest::suite()); 12 testSuite->addTest(PropertyFlattenTest::suite()); 13 14 return(testSuite); 15 } 16 17 18 19 20 21 22 23