xref: /haiku/src/tests/kits/interface/bbitmap/BitmapTest.cpp (revision fa822d727ddad54c214f2ce7aeec67a51e877169)
1 #include "BBitmapTester.h"
2 #include "SetBitsTester.h"
3 
BitmapTestSuite()4 CppUnit::Test* BitmapTestSuite()
5 {
6 	CppUnit::TestSuite *testSuite = new CppUnit::TestSuite();
7 
8 	testSuite->addTest(SetBitsTester::Suite());
9 	testSuite->addTest(TBBitmapTester::Suite());
10 
11 	return testSuite;
12 }
13 
14