1 #include <TestSuite.h> 2 #include <TestSuiteAddon.h> 3 4 // ##### Include headers for your tests here ##### 5 #include "bbitmap/BitmapTest.h" 6 #include "bdeskbar/DeskbarTest.h" 7 #include "bpolygon/PolygonTest.h" 8 9 BTestSuite* getTestSuite() { 10 BTestSuite *suite = new BTestSuite("Interface"); 11 12 // ##### Add test suites here ##### 13 suite->addTest("BBitmap", BitmapTestSuite()); 14 suite->addTest("BDeskbar", DeskbarTestSuite()); 15 suite->addTest("BPolygon", PolygonTestSuite()); 16 17 return suite; 18 } 19