// Copyright Abel Sinkovics (abel@sinkovics.hu) 2010. // 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 #include #include "common.hpp" #include #include #include #include #include #include #include "test_case.hpp" BOOST_METAPARSE_TEST_CASE(repeated_one_of1) { using boost::metaparse::fail; using boost::metaparse::is_error; using boost::metaparse::repeated_one_of1; using boost::metaparse::start; using boost::metaparse::get_result; using boost::metaparse::one_char; using boost::metaparse::keyword; using boost::mpl::apply_wrap2; using boost::mpl::equal; using boost::mpl::list; using boost::mpl::vector_c; typedef fail test_fail; // test0 BOOST_MPL_ASSERT(( is_error, str_hello, start> > )); // test_good_sequence BOOST_MPL_ASSERT(( equal< get_result< apply_wrap2, str_hello, start> >::type, vector_c > )); // test_1_with_bad BOOST_MPL_ASSERT(( is_error, str_hello, start> > )); // test_2_with_first_good BOOST_MPL_ASSERT(( equal< get_result< apply_wrap2, str_hello, start> >::type, vector_c > )); // test_2_with_second_good BOOST_MPL_ASSERT(( equal< get_result< apply_wrap2, str_hello, start> >::type, vector_c > )); typedef keyword keyword_h; typedef keyword keyword_e; typedef keyword keyword_l; // test_accept_any_argument BOOST_MPL_ASSERT(( equal< get_result< apply_wrap2< repeated_one_of1, str_hello, start > >::type, list > )); }