From ad82d011d06c22ce77817ab4606bd0e15663a145 Mon Sep 17 00:00:00 2001 From: vrouvrea Date: Tue, 21 Aug 2018 13:03:33 +0000 Subject: Move assignment and its associated test git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/simplex_tree_fix_vincent@3819 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 6fd6793b177e0a6b803adf5a710f63d8647a9288 --- .../test/simplex_tree_ctor_and_move_unit_test.cpp | 26 ++++++++++++++-------- 1 file changed, 17 insertions(+), 9 deletions(-) (limited to 'src/Simplex_tree/test') diff --git a/src/Simplex_tree/test/simplex_tree_ctor_and_move_unit_test.cpp b/src/Simplex_tree/test/simplex_tree_ctor_and_move_unit_test.cpp index fb3e595c..15eaf612 100644 --- a/src/Simplex_tree/test/simplex_tree_ctor_and_move_unit_test.cpp +++ b/src/Simplex_tree/test/simplex_tree_ctor_and_move_unit_test.cpp @@ -1,11 +1,5 @@ #include -#include -#include -#include -#include // std::pair, std::make_pair -#include // float comparison -#include -#include // greater +#include #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE "simplex_tree_constructor_and_move" @@ -20,6 +14,11 @@ using namespace Gudhi; typedef boost::mpl::list, Simplex_tree> list_of_tested_variants; +template +SimplicialComplex move_it(SimplicialComplex sc) { + return sc; +} + BOOST_AUTO_TEST_CASE_TEMPLATE(simplex_copy_constructor, Simplex_tree, list_of_tested_variants) { std::cout << "********************************************************************" << std::endl; @@ -65,12 +64,21 @@ BOOST_AUTO_TEST_CASE_TEMPLATE(simplex_copy_constructor, Simplex_tree, list_of_te std::cout << "********************************************************************" << std::endl; std::cout << "TEST OF MOVE CONSTRUCTOR" << std::endl; - Simplex_tree st5(std::move(st3)); - Simplex_tree st6(std::move(st4)); + Simplex_tree st5(std::move(st1)); + Simplex_tree st6(std::move(st2)); // Cross check BOOST_CHECK(st5 == st6); BOOST_CHECK(st == st6); BOOST_CHECK(st5 == st); + std::cout << "********************************************************************" << std::endl; + std::cout << "TEST OF MOVE ASSIGNMENT" << std::endl; + + // A swap is a copy ctor of a tmp value, then it uses move assignment + std::swap(st3, st4); + BOOST_CHECK(st3 == st4); + BOOST_CHECK(st == st4); + BOOST_CHECK(st3 == st); + } -- cgit v1.2.3