Update Boost.Array tests to use newer Boost.Test features

[SVN r82822]
This commit is contained in:
Marshall Clow
2013-02-11 17:16:55 +00:00
parent 97a26a1599
commit 117584a2ce
7 changed files with 40 additions and 64 deletions

View File

@ -13,7 +13,8 @@
#include <array>
#endif
#include <boost/test/included/test_exec_monitor.hpp>
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
namespace {
@ -49,7 +50,7 @@ namespace {
}
int test_main( int , char* [] )
BOOST_AUTO_TEST_CASE( test_main )
{
RunBoostTests< bool >();
RunBoostTests< void * >();
@ -62,6 +63,5 @@ int test_main( int , char* [] )
RunStdTests< long double >();
RunStdTests< std::string >();
#endif
return 0;
}