1#ifndef _bitmap_test_h_
2#define _bitmap_test_h_
3
4#include <TestCase.h>
5
6class BitmapTest : public BTestCase {
7public:
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