AimRT/_deps/boost-src/libs/io/test/nullstream_test.cpp
2025-01-12 20:40:48 +08:00

29 lines
556 B
C++

/*
Copyright 2021 Glen Joseph Fernandes
(glenjofe@gmail.com)
Distributed under the Boost Software License, Version 1.0.
(http://www.boost.org/LICENSE_1_0.txt)
*/
#include <boost/io/nullstream.hpp>
#include <boost/core/lightweight_test.hpp>
int main()
{
{
boost::io::onullstream s;
s << "abc";
s << 100;
s << std::endl;
BOOST_TEST(s);
}
{
boost::io::wonullstream s;
s << L"abc";
s << 100;
s << std::endl;
BOOST_TEST(s);
}
return boost::report_errors();
}