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

@ -11,7 +11,8 @@
#include <algorithm>
#include <boost/functional/hash.hpp>
#include <boost/test/included/test_exec_monitor.hpp>
#define BOOST_TEST_MAIN
#include <boost/test/unit_test.hpp>
namespace {
@ -33,12 +34,10 @@ namespace {
}
int test_main( int , char* [] )
BOOST_AUTO_TEST_CASE( test_main )
{
RunTests< int >();
RunTests< long >();
RunTests< long double >();
return 0;
}