static_buffer coverage

This commit is contained in:
Vinnie Falco
2017-06-09 18:34:32 -07:00
parent 4a3b42b398
commit 99f2425de4
7 changed files with 210 additions and 32 deletions

View File

@@ -7,3 +7,32 @@
// Test that header file is self-contained.
#include <beast/core/async_result.hpp>
#include <beast/core/error.hpp>
#include <beast/core/type_traits.hpp>
#include <cstdlib>
namespace beast {
namespace {
struct handler
{
void operator()(beast::error_code, std::size_t) const;
};
static_assert(detail::is_invocable<
typename async_result<handler, void(error_code, std::size_t)>::completion_handler_type,
void(error_code, std::size_t)>::value, "");
static_assert(std::is_same<void,
typename async_result<handler, void(error_code, std::size_t)>::return_type>::value, "");
static_assert(std::is_constructible<
async_result<handler,
void(error_code, std::size_t)>,
typename async_result<handler,
void(error_code, std::size_t)
>::completion_handler_type&>::value, "");
} // (anon-ns)
} // beast