2
0
mirror of https://github.com/boostorg/gil.git synced 2026-01-19 16:22:14 +00:00
Files
gil/test/test_utility_output_stream.cpp
Mateusz Łoskot f641190948 Replace BOOST_TEST with BOOST_TEST_EQ for streamable operands (#472)
Improve utilities sending channels, pixels and other GIL objects to
output stream for logging of test errors.

Fix missing namespace qualification in IO tests.

Comment TARGA test case with FIXME that was accidentally
uncommented in cc64bdd1a4
2020-04-01 01:54:12 +02:00

69 lines
1.8 KiB
C++

//
// Copyright 2020 Mateusz Loskot <mateusz at loskot dot net>
//
// 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
//
#include <boost/core/lightweight_test.hpp>
#include "test_utility_output_stream.hpp"
#include <cstdint>
#include <sstream>
#include <type_traits>
namespace utility = boost::gil::test::utility;
int main()
{
static_assert(
std::is_same<utility::printable_numeric_t<std::uint8_t>, int>::value,
"std::uint8_t not printable as int");
static_assert(
!std::is_same<utility::printable_numeric_t<std::uint64_t>, int>::value,
"std::uint64_t printable as int");
static_assert(
std::is_same<utility::printable_numeric_t<float>, double>::value,
"float not printable as double");
{
std::ostringstream oss;
utility::print_color_base p{oss};
p(std::int8_t{-128});
BOOST_TEST_EQ(oss.str(), "v0=-128");
}
{
std::ostringstream oss;
utility::print_color_base p{oss};
p(std::uint8_t{128});
BOOST_TEST_EQ(oss.str(), "v0=128");
}
{
std::ostringstream oss;
utility::print_color_base p{oss};
p(std::int16_t{-32768});
BOOST_TEST_EQ(oss.str(), "v0=-32768");
}
{
std::ostringstream oss;
utility::print_color_base p{oss};
p(std::uint16_t{32768});
BOOST_TEST_EQ(oss.str(), "v0=32768");
}
{
std::ostringstream oss;
utility::print_color_base p{oss};
p(float{1.2345f});
BOOST_TEST_EQ(oss.str(), "v0=1.2345");
}
{
std::ostringstream oss;
utility::print_color_base p{oss};
p(double{1.2345});
BOOST_TEST_EQ(oss.str(), "v0=1.2345");
}
return ::boost::report_errors();
}