diff --git a/string/test/trim_test.cpp b/string/test/trim_test.cpp index a19b1b7..8dcce28 100644 --- a/string/test/trim_test.cpp +++ b/string/test/trim_test.cpp @@ -151,11 +151,54 @@ void trim_all_test() BOOST_CHECK( trim_all_copy_if( string("<>abc<>def<>"), is_any_of( "<<>>" ) )=="abcabc<>def<>"), "-", is_any_of( "<<>>" ) )=="abc-def" ); +} + // test main int test_main( int, char*[] ) { trim_test(); trim_all_test(); - + trim_fill_test(); + return 0; }