// 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 #include "common.hpp" #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::is_error; using boost::metaparse::always; using boost::metaparse::one_char; using boost::mpl::equal; using boost::mpl::apply_wrap2; using boost::mpl::list; using boost::mpl::vector_c; using boost::mpl::vector; typedef repeated1 repeated1_letter; typedef always always_int; // test_empty_input BOOST_MPL_ASSERT((is_error >)); // test0 BOOST_MPL_ASSERT((is_error >)); // 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_no_extra_evaluation BOOST_MPL_ASSERT(( equal< get_result, str_ca, start> >::type, vector > )); }