/* Copyright (c) Marshall Clow 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) For more information, see http://www.boost.org */ #include #include #include #define BOOST_TEST_MAIN #include namespace ba = boost::algorithm; BOOST_AUTO_TEST_CASE( test_main ) { // Second argument must be an integral value BOOST_CHECK ( ba::power(1, 1.0) == 1); }