removed code duplication in unit tests

This commit is contained in:
Michael Krasnyk
2017-03-07 16:26:24 +01:00
committed by Patrick Niklaus
parent dff8c48842
commit 5aba239fc1
3 changed files with 80 additions and 83 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef UNIT_TESTS_RANGE_TOOLS_HPP
#define UNIT_TESTS_RANGE_TOOLS_HPP
#include <boost/test/unit_test.hpp>
#define REQUIRE_SIZE_RANGE(range, ref) BOOST_REQUIRE_EQUAL(range.size(), ref)
#define CHECK_EQUAL_RANGE(range, ...) \
do \
{ \
const auto &lhs = range; \
const auto &rhs = {__VA_ARGS__}; \
BOOST_CHECK_EQUAL_COLLECTIONS(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); \
} while (0)
#define CHECK_EQUAL_COLLECTIONS(lhs, rhs) \
do \
{ \
BOOST_CHECK_EQUAL_COLLECTIONS(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); \
} while (0)
#endif // UNIT_TESTS_RANGE_TOOLS_HPP