| 1 | #ifndef BOOST_METAPARSE_TEST_TEST_CASE_HPP |
| 2 | #define BOOST_METAPARSE_TEST_TEST_CASE_HPP |
| 3 | |
| 4 | // Copyright Abel Sinkovics (abel@sinkovics.hu) 2015. |
| 5 | // Distributed under the Boost Software License, Version 1.0. |
| 6 | // (See accompanying file LICENSE_1_0.txt or copy at |
| 7 | // http://www.boost.org/LICENSE_1_0.txt) |
| 8 | |
| 9 | #include <boost/preprocessor/cat.hpp> |
| 10 | |
| 11 | #ifdef BOOST_METAPARSE_TEST_CASE |
| 12 | # error BOOST_METAPARSE_TEST_CASE already defined |
| 13 | #endif |
| 14 | #define BOOST_METAPARSE_TEST_CASE(name) \ |
| 15 | void BOOST_PP_CAT(metaparse_test_case_, name)() |
| 16 | |
| 17 | #endif |
| 18 | |
| 19 | |