#ifdef _MSC_VER #pragma warning(disable: 4786 4250 4503) #endif #include #include #include #include #include #include #include "../CppUnit/TestRunner.hpp" #include "../CppUnit/framework/Test.h" #include "../CppUnit/framework/TestSuite.h" #include "test_SAX.h" #include "../silly_string/silly_string.hpp" //////////////////////////////////////////////// int main(int argc, const char* argv[]) { TestRunner runner; runner.addTest("SAX2DOMTest", SAXTest_suite >()); runner.addTest("SAX2DOMTest_silly", SAXTest_suite()); #ifndef ARABICA_NO_WCHAR_T runner.addTest("SAX2DOMTest_wide", SAXTest_suite >()); #endif runner.run(argc, argv); return 0; } // main // end of file