xref: /haiku/src/tests/kits/support/bmemoryio/MallocWriteTest.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 #ifndef MallocWriteTest_H
2 #define MallocWriteTest_H
3 
4 #include "TestCase.h"
5 #include <DataIO.h>
6 
7 
8 class MallocWriteTest : public BTestCase
9 {
10 
11 private:
12 
13 protected:
14 
15 public:
16 	static Test *suite(void);
17 	void PerformTest(void);
18 	MallocWriteTest(std::string name = "");
19 	virtual ~MallocWriteTest();
20 	};
21 
22 #endif
23