array_of_class.cpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // Copyright (c) 2008 Joseph Gauterin, Niels Dekker
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. // (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // Tests swapping an array of arrays of swap_test_class objects by means of boost::swap.
  7. #include <boost/utility/swap.hpp>
  8. #include <boost/core/lightweight_test.hpp>
  9. #define BOOST_CHECK BOOST_TEST
  10. #define BOOST_CHECK_EQUAL BOOST_TEST_EQ
  11. //Put test class in the global namespace
  12. #include "./swap_test_class.hpp"
  13. #include <algorithm> //for std::copy and std::equal
  14. #include <cstddef> //for std::size_t
  15. //Provide swap function in both the namespace of swap_test_class
  16. //(which is the global namespace), and the std namespace.
  17. //It's common to provide a swap function for a class in both
  18. //namespaces. Scott Meyers recommends doing so: Effective C++,
  19. //Third Edition, item 25, "Consider support for a non-throwing swap".
  20. void swap(swap_test_class& left, swap_test_class& right)
  21. {
  22. left.swap(right);
  23. }
  24. namespace std
  25. {
  26. template <>
  27. void swap(swap_test_class& left, swap_test_class& right)
  28. {
  29. left.swap(right);
  30. }
  31. }
  32. int main()
  33. {
  34. const std::size_t array_size = 2;
  35. const swap_test_class initial_array1[array_size] = { swap_test_class(1), swap_test_class(2) };
  36. const swap_test_class initial_array2[array_size] = { swap_test_class(3), swap_test_class(4) };
  37. swap_test_class array1[array_size];
  38. swap_test_class array2[array_size];
  39. std::copy(initial_array1, initial_array1 + array_size, array1);
  40. std::copy(initial_array2, initial_array2 + array_size, array2);
  41. swap_test_class::reset();
  42. boost::swap(array1, array2);
  43. BOOST_CHECK(std::equal(array1, array1 + array_size, initial_array2));
  44. BOOST_CHECK(std::equal(array2, array2 + array_size, initial_array1));
  45. BOOST_CHECK_EQUAL(swap_test_class::swap_count(), array_size);
  46. BOOST_CHECK_EQUAL(swap_test_class::copy_count(), 0);
  47. return boost::report_errors();
  48. }