summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/metaparse/test/in_range_c.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/metaparse/test/in_range_c.cpp')
-rw-r--r--src/boost/libs/metaparse/test/in_range_c.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/boost/libs/metaparse/test/in_range_c.cpp b/src/boost/libs/metaparse/test/in_range_c.cpp
new file mode 100644
index 000000000..49f4310cf
--- /dev/null
+++ b/src/boost/libs/metaparse/test/in_range_c.cpp
@@ -0,0 +1,36 @@
+// Copyright Abel Sinkovics (abel@sinkovics.hu) 2014.
+// 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 <boost/metaparse/util/in_range_c.hpp>
+
+#include "common.hpp"
+
+#include <boost/mpl/apply_wrap.hpp>
+#include <boost/mpl/not.hpp>
+#include <boost/mpl/assert.hpp>
+
+#include "test_case.hpp"
+
+BOOST_METAPARSE_TEST_CASE(util_in_range_c)
+{
+ using boost::metaparse::util::in_range_c;
+
+ using boost::mpl::apply_wrap1;
+ using boost::mpl::not_;
+
+ // test_int_in_range
+ BOOST_MPL_ASSERT((apply_wrap1<in_range_c<char, 'a', 'g'>, char_e>));
+
+ // test_lower_bound
+ BOOST_MPL_ASSERT((apply_wrap1<in_range_c<char, 'a', 'g'>, char_a>));
+
+ // test_upper_bound
+ BOOST_MPL_ASSERT((apply_wrap1<in_range_c<int, 10, 13>, int13>));
+
+ // test_int_not_in_range
+ BOOST_MPL_ASSERT((not_<apply_wrap1<in_range_c<int, 10, 13>, int14> >));
+
+}
+