summaryrefslogtreecommitdiff
path: root/libs/pbd/test/reallocpool_test.h
blob: fe1d706797220e433ae6762ce34435f240a91000 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include "glibmm/threads.h"

class ReallocPoolTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (ReallocPoolTest);
	CPPUNIT_TEST (testBasic);
	CPPUNIT_TEST_SUITE_END ();

public:
	ReallocPoolTest ();
	void testBasic ();

private:
};