// 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) #include #include #include #include #include #include "common.hpp" #include #include #include #include #include #include "test_case.hpp" BOOST_METAPARSE_TEST_CASE(iterate_c) { using boost::metaparse::is_error; using boost::metaparse::iterate_c; using boost::metaparse::one_char; using boost::metaparse::start; using boost::metaparse::get_result; using boost::mpl::apply_wrap2; using boost::mpl::equal; using boost::mpl::list; using boost::mpl::vector_c; // test_empty_input BOOST_MPL_ASSERT(( is_error, str_, start> > )); // test0 BOOST_MPL_ASSERT(( equal< get_result, str_hello, start> >::type, list<> > )); // test1 BOOST_MPL_ASSERT(( equal< get_result, str_hello, start> >::type, vector_c > )); // test2 BOOST_MPL_ASSERT(( equal< get_result, str_hello, start> >::type, vector_c > )); // test3 BOOST_MPL_ASSERT(( equal< get_result, str_hello, start> >::type, vector_c > )); }