phoenix/test/operator/comparison_tests.cpp
Thomas Heller 398579a251 + implemented PP file iterations with predefined macros for typenames etc.
+ added full support for member operator
+ added full support for std::iostream operator
+ implemented perfect forwarding for actor
+ adapted some test cases for "best-practice"
+ implemented variadic arguments for all actors based on phoenix/core/limits.h
+ added proper boost build handling
+ arity calculation tweak from Eric



[SVN r63027]
2010-06-16 21:43:16 +00:00

30 lines
890 B
C++

/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
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/detail/lightweight_test.hpp>
#include <boost/phoenix/core.hpp>
#include <boost/phoenix/operator.hpp>
namespace phoenix = boost::phoenix;
int
main()
{
using phoenix::val;
{
BOOST_TEST(!(val(123) == 456)());
BOOST_TEST((val(123) != 456)());
BOOST_TEST(!(val(123) > 456)());
BOOST_TEST((val(123) < 456)());
BOOST_TEST(!(val(123) > 456)());
BOOST_TEST((val(123) <= 123)());
BOOST_TEST((val(123) >= 123)());
}
return boost::report_errors();
}