Add locale independent and thread safe string conversion API with tests
[ardour.git] / libs / pbd / test / reallocpool_test.h
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3 #include "glibmm/threads.h"
4
5 class ReallocPoolTest : public CppUnit::TestFixture
6 {
7         CPPUNIT_TEST_SUITE (ReallocPoolTest);
8         CPPUNIT_TEST (testBasic);
9         CPPUNIT_TEST_SUITE_END ();
10
11 public:
12         ReallocPoolTest ();
13         void testBasic ();
14
15 private:
16 };