// Copyright Abel Sinkovics (abel@sinkovics.hu) 2011. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // This header file contains code that is reused by other cpp files #include #include #include #include #include #include "common.hpp" #include #include #include #include #include #include #include #include "test_case.hpp" BOOST_METAPARSE_TEST_CASE(TEST_NAME) { using boost::metaparse::get_result; using boost::metaparse::letter; using boost::metaparse::start; using boost::metaparse::one_char; using boost::metaparse::always; using boost::mpl::equal; using boost::mpl::equal_to; using boost::mpl::apply_wrap2; using boost::mpl::vector_c; using boost::mpl::vector; using boost::mpl::list; using boost::mpl::size; typedef repeated repeated_letter; typedef always always_int; // test_empty_input BOOST_MPL_ASSERT(( equal >::type, list<> > )); // test0 BOOST_MPL_ASSERT(( equal< get_result >::type, list<> > )); // test1 BOOST_MPL_ASSERT(( equal< get_result >::type, vector_c > )); // test2 BOOST_MPL_ASSERT(( equal< get_result >::type, vector_c > )); // test3 BOOST_MPL_ASSERT(( equal< get_result >::type, vector_c > )); // test4 BOOST_MPL_ASSERT(( equal< get_result >::type, vector_c > )); // test5 BOOST_MPL_ASSERT(( equal< get_result >::type, vector_c > )); // test_length BOOST_MPL_ASSERT(( equal_to< size< get_result >::type >::type, int3 > )); // test_no_extra_evaluation BOOST_MPL_ASSERT(( equal< get_result, str_ca, start> >::type, vector > )); }