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