ardour/libs/pbd/test/xml_test.h
Tim Mayberry a4b65212c9 Add test of pbd/xml++.h API performance with three file sizes
Generate, write and then read three Session like XML files to test the
performance of changes made to pbd/xml++.h API
2016-10-10 08:45:34 +10:00

19 lines
504 B
C++

#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
class XMLTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE (XMLTest);
CPPUNIT_TEST (testXMLFilenameEncoding);
CPPUNIT_TEST (testPerfSmallXMLDocument);
CPPUNIT_TEST (testPerfMediumXMLDocument);
CPPUNIT_TEST (testPerfLargeXMLDocument);
CPPUNIT_TEST_SUITE_END ();
public:
void testXMLFilenameEncoding ();
void testPerfSmallXMLDocument ();
void testPerfMediumXMLDocument ();
void testPerfLargeXMLDocument ();
};