mirror of
https://github.com/boostorg/detail.git
synced 2025-07-29 20:07:15 +02:00
Converted blank_test to lightweight_test.hpp.
This commit is contained in:
@ -5,28 +5,33 @@
|
||||
|
||||
#include <boost/blank.hpp>
|
||||
#include <boost/static_assert.hpp>
|
||||
#include <cassert>
|
||||
|
||||
#include <boost/core/lightweight_test.hpp>
|
||||
#include <boost/type_traits/is_pod.hpp>
|
||||
#include <boost/type_traits/is_empty.hpp>
|
||||
#include <boost/type_traits/is_stateless.hpp>
|
||||
#if !defined(BOOST_NO_IOSTREAM)
|
||||
#include <sstream>
|
||||
#endif
|
||||
|
||||
int main() {
|
||||
int main()
|
||||
{
|
||||
BOOST_STATIC_ASSERT((boost::is_pod<boost::blank>::value));
|
||||
BOOST_STATIC_ASSERT((boost::is_empty<boost::blank>::value));
|
||||
BOOST_STATIC_ASSERT((boost::is_stateless<boost::blank>::value));
|
||||
|
||||
boost::blank b1,b2;
|
||||
assert(b1 == b2);
|
||||
assert(b1 <= b2);
|
||||
assert(b1 >= b2);
|
||||
assert(!(b1 != b2));
|
||||
assert(!(b1 < b2));
|
||||
assert(!(b1 > b2));
|
||||
BOOST_TEST(b1 == b2);
|
||||
BOOST_TEST(b1 <= b2);
|
||||
BOOST_TEST(b1 >= b2);
|
||||
BOOST_TEST(!(b1 != b2));
|
||||
BOOST_TEST(!(b1 < b2));
|
||||
BOOST_TEST(!(b1 > b2));
|
||||
|
||||
#if !defined(BOOST_NO_IOSTREAM)
|
||||
std::stringstream s;
|
||||
s << "(" << b1 << ")";
|
||||
assert(s.str() == "()");
|
||||
BOOST_TEST(s.str() == "()");
|
||||
#endif
|
||||
|
||||
return boost::report_errors();
|
||||
}
|
||||
|
Reference in New Issue
Block a user