mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-03 23:02:11 +01:00
31 lines
660 B
C++
31 lines
660 B
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable: 4786 4250 4503)
|
|
#endif
|
|
#include <iostream>
|
|
#include <string>
|
|
//#include <wrappers/saxexpat.h>
|
|
#include <DOM/SAX2DOM/SAX2DOM.h>
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
#include "../CppUnit/TestRunner.hpp"
|
|
#include "../CppUnit/framework/Test.h"
|
|
#include "../CppUnit/framework/TestSuite.h"
|
|
|
|
#include "test_SAX.h"
|
|
|
|
////////////////////////////////////////////////
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
TestRunner runner;
|
|
|
|
runner.addTest("SAX2DOMTest", SAXTest_suite<std::string, Arabica::default_string_adaptor_base<std::string> >());
|
|
|
|
runner.run(argc, argv);
|
|
|
|
return 0;
|
|
} // main
|
|
|
|
// end of file
|