xo-expression2/xo-indentlog/utest/array.test.cpp
Roland Conybeare 341fcfd1c7 Add 'xo-indentlog/' from commit 'd43c4af0b4'
git-subtree-dir: xo-indentlog
git-subtree-mainline: 1c3f033933
git-subtree-split: d43c4af0b4
2025-05-10 17:00:33 -05:00

40 lines
850 B
C++

/* @file array.test.cpp */
#include "xo/indentlog/print/array.hpp" /* overload operator<< for std::array */
#include "xo/indentlog/print/tag.hpp"
#include <catch2/catch.hpp>
#include <sstream>
using namespace xo;
namespace ut {
TEST_CASE("array", "[array]") {
tag_config::tag_color = color_spec_type::none();
{
std::array<int, 0> x = {};
std::stringstream ss;
ss << x;
REQUIRE(ss.str() == "[]");
}
{
std::array<int, 1> x = {1};
std::stringstream ss;
ss << x;
REQUIRE(ss.str() == "[1]");
}
{
std::array<int, 2> x = {1, 2};
std::stringstream ss;
ss << x;
REQUIRE(ss.str() == "[1 2]");
}
}
} /*namespace ut*/
/* end array.test.cpp */