2017-05-03 15:29:23 -07: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.
|
|
|
|
|
#include <beast/core/ostream.hpp>
|
|
|
|
|
|
|
|
|
|
#include <beast/core/streambuf.hpp>
|
|
|
|
|
#include <beast/unit_test/suite.hpp>
|
2017-05-04 05:01:50 -07:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2017-05-03 15:29:23 -07:00
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
|
|
namespace beast {
|
|
|
|
|
|
|
|
|
|
class ostream_test : public beast::unit_test::suite
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
void run() override
|
|
|
|
|
{
|
|
|
|
|
streambuf sb;
|
|
|
|
|
ostream(sb) << "Hello, world!\n";
|
2017-05-04 05:01:50 -07:00
|
|
|
BEAST_EXPECT(boost::lexical_cast<std::string>(
|
|
|
|
|
buffers(sb.data())) == "Hello, world!\n");
|
2017-05-03 15:29:23 -07:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
BEAST_DEFINE_TESTSUITE(ostream,core,beast);
|
|
|
|
|
|
|
|
|
|
} // beast
|