mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-27 21:58:30 +01:00
23 lines
488 B
C++
23 lines
488 B
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable: 4786 4250 4503)
|
|
#endif
|
|
|
|
#ifndef ARABICA_NO_WCHAR_T
|
|
#include <iostream>
|
|
#endif
|
|
|
|
#include "../DOM/dom_test_suite.hpp"
|
|
|
|
////////////////////////////////////////////////
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
#ifndef ARABICA_NO_WCHAR_T
|
|
DOM_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
|
|
#else
|
|
std::cout << "No DOM_wide tests on this platform :)" << std::endl;
|
|
#endif
|
|
|
|
return 0;
|
|
} // main
|
|
|
|
// end of file
|