xref: /haiku/src/tests/kits/support/bmemoryio/MallocWriteTest.h (revision 459a94c163f127d416a0119993ecc1205b472e0c)
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