diff --git a/source/RobotAPI/libraries/armem/test/ArMemMemoryTest.cpp b/source/RobotAPI/libraries/armem/test/ArMemMemoryTest.cpp index 8de62148fbfdb1207b8944bcf598eb998e62e2a1..a30132549aacc14b80fd913dc83b302ba917a6c2 100644 --- a/source/RobotAPI/libraries/armem/test/ArMemMemoryTest.cpp +++ b/source/RobotAPI/libraries/armem/test/ArMemMemoryTest.cpp @@ -77,7 +77,8 @@ BOOST_AUTO_TEST_CASE(test_time_to_string) BOOST_CHECK_EQUAL(armem::toDateTimeMilliSeconds(time, 6), "1970-01-02 07:51:51.345000"); } -BOOST_AUTO_TEST_CASE(test_ctors) + +BOOST_AUTO_TEST_CASE(test_key_ctors) { armem::wm::EntityInstance instance(10); BOOST_CHECK_EQUAL(instance.index(), 10); @@ -98,6 +99,7 @@ BOOST_AUTO_TEST_CASE(test_ctors) BOOST_CHECK_EQUAL(memory.name(), "memory"); } + BOOST_AUTO_TEST_CASE(test_segment_setup) { armem::EntityUpdate update; @@ -326,4 +328,6 @@ BOOST_AUTO_TEST_CASE(test_copy_move_ctors_ops) test_the_copy_move_ctors_ops<armem::d_ltm::ProviderSegment>(); test_the_copy_move_ctors_ops<armem::d_ltm::CoreSegment>(); test_the_copy_move_ctors_ops<armem::d_ltm::Memory>(); + + BOOST_CHECK(true); }