xref: /haiku/src/tests/system/kernel/util/BitmapTest.h (revision 9e19c5aea45313875b22104ca2f00fd392e3233c)
1 #ifndef _bitmap_test_h_
2 #define _bitmap_test_h_
3 
4 #include <TestCase.h>
5 
6 class BitmapTest : public BTestCase {
7 public:
8 	BitmapTest(std::string name = "");
9 
10 	static CppUnit::Test* Suite();
11 
12 	void ResizeTest();
13 	void ShiftTest();
14 };
15 
16 #endif // _bitmap_test_h_
17