summaryrefslogtreecommitdiffstats
path: root/kbruch/testcases/kbruch_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbruch/testcases/kbruch_test.cpp')
-rw-r--r--kbruch/testcases/kbruch_test.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/kbruch/testcases/kbruch_test.cpp b/kbruch/testcases/kbruch_test.cpp
index b4e978d1..a98496eb 100644
--- a/kbruch/testcases/kbruch_test.cpp
+++ b/kbruch/testcases/kbruch_test.cpp
@@ -16,8 +16,8 @@
***************************************************************************/
// for BOOST testing
-#include <boost/test/unit_test.hpp>
-using boost::unit_test_framework::test_suite;
+#include <boost/test/included/unit_test.hpp>
+using namespace boost::unit_test;
// the test classes
#include "primenumber_test.cpp"
@@ -27,11 +27,12 @@ using boost::unit_test_framework::test_suite;
test_suite* init_unit_test_suite(int /* argc */, char** /* argv */)
{
// create the top test suite
- std::auto_ptr<test_suite> top_test_suite(BOOST_TEST_SUITE("Master test suite"));
+ test_suite* top_test_suite = BOOST_TEST_SUITE("Master test suite");
// add test suites to the top test suite
top_test_suite->add(new primenumber_test_suite());
top_test_suite->add(new ratio_test_suite());
- return top_test_suite.release();
+ framework::master_test_suite().add( top_test_suite );
+ return 0;
}