1#include "cppunit/Test.h"
2#include "cppunit/TestSuite.h"
3#include "MallocIOTest.h"
4#include "MallocSeekTest.h"
5#include "MallocWriteTest.h"
6#include "MallocBufferLengthTest.h"
7
8CppUnit::Test *MallocIOTestSuite()
9{
10	CppUnit::TestSuite *testSuite = new CppUnit::TestSuite();
11
12	testSuite->addTest(MallocSeekTest::suite());
13	testSuite->addTest(MallocWriteTest::suite());
14	testSuite->addTest(MallocBufferLengthTest::suite());
15
16	return(testSuite);
17}
18
19
20
21
22
23
24
25