mirror of https://gitee.com/bigwinds/arangodb
23 lines
563 B
C++
23 lines
563 B
C++
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
|
|
// 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)
|
|
|
|
#define BOOST_TEST_MODULE empty_string
|
|
|
|
#include <boost/metaparse/v1/impl/empty_string.hpp>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include <string>
|
|
|
|
BOOST_AUTO_TEST_CASE(test_empty_string)
|
|
{
|
|
using boost::metaparse::v1::impl::empty_string;
|
|
using std::string;
|
|
|
|
// test_value
|
|
BOOST_REQUIRE_EQUAL(string(), empty_string<>::value);
|
|
}
|
|
|