2015-07-25 02:43:24 -04:00
|
|
|
#include <cppunit/TestFixture.h>
|
|
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
|
|
|
|
class XMLTest : public CppUnit::TestFixture
|
|
|
|
{
|
|
|
|
CPPUNIT_TEST_SUITE (XMLTest);
|
|
|
|
CPPUNIT_TEST (testXMLFilenameEncoding);
|
2016-09-23 18:31:20 -04:00
|
|
|
CPPUNIT_TEST (testPerfSmallXMLDocument);
|
|
|
|
CPPUNIT_TEST (testPerfMediumXMLDocument);
|
|
|
|
CPPUNIT_TEST (testPerfLargeXMLDocument);
|
2015-07-25 02:43:24 -04:00
|
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void testXMLFilenameEncoding ();
|
2016-09-23 18:31:20 -04:00
|
|
|
void testPerfSmallXMLDocument ();
|
|
|
|
void testPerfMediumXMLDocument ();
|
|
|
|
void testPerfLargeXMLDocument ();
|
2015-07-25 02:43:24 -04:00
|
|
|
};
|