1 #include <TestSuite.h> 2 #include <TestSuiteAddon.h> 3 4 // ##### Include headers for your tests here ##### 5 #include "balert/AlertTest.h" 6 #include "bbitmap/BitmapTest.h" 7 #include "bdeskbar/DeskbarTest.h" 8 #include "bpolygon/PolygonTest.h" 9 #include "bregion/RegionTest.h" 10 #include "btextcontrol/TextControlTest.h" 11 #include "btextview/TextViewTest.h" 12 //#include "bwidthbuffer/WidthBufferTest.h" 13 #include "GraphicsDefsTest.h" 14 15 16 BTestSuite * 17 getTestSuite() 18 { 19 BTestSuite *suite = new BTestSuite("Interface"); 20 21 // ##### Add test suites here ##### 22 suite->addTest("BAlert", AlertTest::Suite()); 23 suite->addTest("BBitmap", BitmapTestSuite()); 24 suite->addTest("BDeskbar", DeskbarTestSuite()); 25 suite->addTest("BPolygon", PolygonTestSuite()); 26 suite->addTest("BRegion", RegionTestSuite()); 27 suite->addTest("BTextControl", TextControlTestSuite()); 28 suite->addTest("BTextView", TextViewTestSuite()); 29 //suite->addTest("_BWidthBuffer_", WidthBufferTestSuite()); 30 suite->addTest("GraphicsDefs", GraphicsDefsTestSuite()); 31 32 return suite; 33 } 34