test_macros.h
Go to the documentation of this file.
1 #ifndef cetlib_test_macros_h
2 #define cetlib_test_macros_h
3 
4 #include "boost/test/unit_test.hpp"
5 
6 #pragma GCC warning \
7  "The CET_CHECK_EQUAL_COLLECTIONS macro has been deprecated. Please use BOOST_TEST instead."
8 
9 #define CET_CHECK_EQUAL_COLLECTIONS(test, ref) \
10  BOOST_CHECK_EQUAL_COLLECTIONS( \
11  test.begin(), test.end(), ref.begin(), ref.end())
12 
13 #endif /* cetlib_test_macros_h */