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