2002-11-23 19:50:14 +00:00
|
|
|
#ifdef _MSC_VER
|
2002-06-21 11:16:28 +00:00
|
|
|
#pragma warning(disable: 4786 4250 4503)
|
2002-11-23 19:50:14 +00:00
|
|
|
#endif
|
2002-06-21 11:16:28 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
//#include <wrappers/saxexpat.h>
|
|
|
|
#include <DOM/SAX2DOM/SAX2DOM.h>
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
|
2005-10-23 21:22:38 +00:00
|
|
|
#include "../CppUnit/TestRunner.hpp"
|
2005-08-07 20:45:21 +00:00
|
|
|
#include "../CppUnit/framework/Test.h"
|
|
|
|
#include "../CppUnit/framework/TestSuite.h"
|
2002-06-21 11:16:28 +00:00
|
|
|
|
2002-09-03 13:26:08 +00:00
|
|
|
#include "test_SAX.h"
|
2002-06-21 11:16:28 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
TestRunner runner;
|
|
|
|
|
2005-10-26 20:52:48 +00:00
|
|
|
runner.addTest("SAX2DOMTest", SAXTest_suite<std::string, Arabica::default_string_adaptor_base<std::string> >());
|
2005-10-26 21:09:09 +00:00
|
|
|
|
2002-06-21 11:16:28 +00:00
|
|
|
runner.run(argc, argv);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
} // main
|
|
|
|
|
|
|
|
// end of file
|