mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
15 lines
329 B
C++
15 lines
329 B
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable: 4786 4250 4503)
|
|
#endif
|
|
|
|
#include "util_test_suite.hpp"
|
|
|
|
////////////////////////////////////////////////
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
bool ok = Util_test_suite<std::string, Arabica::default_string_adaptor<std::string> >(argc, argv);
|
|
|
|
return !ok;
|
|
} // main
|
|
|
|
// end of file
|