Use XMLNode::set_property API in xml tests
[ardour.git] / libs / pbd / test / natsort_test.h
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class NatSortTest : public CppUnit::TestFixture
5 {
6         CPPUNIT_TEST_SUITE (NatSortTest);
7         CPPUNIT_TEST (testBasic);
8         CPPUNIT_TEST_SUITE_END ();
9
10 public:
11         NatSortTest () { }
12         void testBasic ();
13
14 private:
15 };