summaryrefslogtreecommitdiffstats
path: root/kbruch/testcases/kbruch_test.cpp
diff options
context:
space:
mode:
authorgregory guy <g-gregory@gmx.fr>2019-06-27 16:35:25 +0200
committerSlávek Banko <slavek.banko@axis.cz>2019-06-27 16:35:25 +0200
commitd4a1613e9f119ae68c695ab60f8d9856d1a54a52 (patch)
tree6de888ef76667e28c81832dc104c19b158859b9b /kbruch/testcases/kbruch_test.cpp
parent9fb4e1ccde0b89b413bfdc8ae62f8178ecad5483 (diff)
downloadtdeedu-d4a1613e9f119ae68c695ab60f8d9856d1a54a52.tar.gz
tdeedu-d4a1613e9f119ae68c695ab60f8d9856d1a54a52.zip
Conversion to the cmake building system.
Add includes to UI files to resolve FTBFS. Signed-off-by: gregory guy <g-gregory@gmx.fr> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
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;
}