Safe Mode: disable VST scan
[ardour.git] / libs / pbd / test / xml_test.h
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class XMLTest : public CppUnit::TestFixture
5 {
6         CPPUNIT_TEST_SUITE (XMLTest);
7         CPPUNIT_TEST (testXMLFilenameEncoding);
8         CPPUNIT_TEST (testPerfSmallXMLDocument);
9         CPPUNIT_TEST (testPerfMediumXMLDocument);
10         CPPUNIT_TEST (testPerfLargeXMLDocument);
11         CPPUNIT_TEST_SUITE_END ();
12
13 public:
14         void testXMLFilenameEncoding ();
15         void testPerfSmallXMLDocument ();
16         void testPerfMediumXMLDocument ();
17         void testPerfLargeXMLDocument ();
18 };