xref: /haiku/src/tests/system/kernel/util/BitmapTest.h (revision 1a76488fc88584bf66b9751d7fb9b6527ac20d87)
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