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

@ -10,8 +10,8 @@
#include <boost/array.hpp>
#include <algorithm>
#include <boost/test/included/test_exec_monitor.hpp>
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
namespace {
template< class T >
@ -30,12 +30,11 @@ namespace {
}
}
int test_main( int , char* [] )
BOOST_AUTO_TEST_CASE( test_main )
{
RunTests< bool >();
RunTests< void * >();
RunTests< long double >();
RunTests< std::string >();
return 0;
}