summaryrefslogtreecommitdiff
path: root/libs/pbd/test/xml_test.h
blob: e3a1ac749cdfe1663857e2fc8f1930018014a538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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 ();
};