Files
beast/test/core/clamp.cpp
T

38 lines
788 B
C++
Raw Normal View History

2016-05-15 16:22:25 -04:00
//
2017-02-06 20:07:03 -05:00
// Copyright (c) 2013-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
2016-05-15 16:22:25 -04:00
//
// 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>
2016-05-15 16:22:25 -04:00
#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
2016-05-15 16:22:25 -04:00
{
public:
void testClamp()
{
2016-10-24 20:02:38 -04:00
BEAST_EXPECT(clamp(
2016-11-08 13:03:20 -05:00
(std::numeric_limits<std::uint64_t>::max)()) ==
(std::numeric_limits<std::size_t>::max)());
2016-05-15 16:22:25 -04:00
}
void run() override
{
testClamp();
}
};
2016-10-24 20:02:38 -04:00
BEAST_DEFINE_TESTSUITE(clamp,core,beast);
2016-05-15 16:22:25 -04:00
} // detail
} // beast