Files
boost_beast/test/core/clamp.cpp

38 lines
788 B
C++
Raw Normal View History

//
2017-02-06 20:07:03 -05:00
// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// 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)
//
// Test that header file is self-contained.
2016-10-24 20:02:38 -04:00
#include <beast/core/detail/clamp.hpp>
#include <beast/unit_test/suite.hpp>
#include <climits>
namespace beast {
namespace detail {
2016-10-24 20:02:38 -04:00
class clamp_test : public beast::unit_test::suite
{
public:
void testClamp()
{
2016-10-24 20:02:38 -04:00
BEAST_EXPECT(clamp(
(std::numeric_limits<std::uint64_t>::max)()) ==
(std::numeric_limits<std::size_t>::max)());
}
void run() override
{
testClamp();
}
};
2016-10-24 20:02:38 -04:00
BEAST_DEFINE_TESTSUITE(clamp,core,beast);
} // detail
} // beast