|
|
@ -22,7 +22,6 @@ void test_pad6(std::size_t n, const char* expected)
|
|
|
|
REQUIRE(fmt::to_string(buf) == expected);
|
|
|
|
REQUIRE(fmt::to_string(buf) == expected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE("pad2", "[fmt_helper]")
|
|
|
|
TEST_CASE("pad2", "[fmt_helper]")
|
|
|
|
{
|
|
|
|
{
|
|
|
|
test_pad2(0, "00");
|
|
|
|
test_pad2(0, "00");
|
|
|
@ -43,7 +42,6 @@ TEST_CASE("pad3", "[fmt_helper]")
|
|
|
|
test_pad3(-5, "-05");
|
|
|
|
test_pad3(-5, "-05");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TEST_CASE("pad6", "[fmt_helper]")
|
|
|
|
TEST_CASE("pad6", "[fmt_helper]")
|
|
|
|
{
|
|
|
|
{
|
|
|
|
test_pad6(0, "000000");
|
|
|
|
test_pad6(0, "000000");
|
|
|
@ -54,4 +52,3 @@ TEST_CASE("pad6", "[fmt_helper]")
|
|
|
|
test_pad6(12345, "012345");
|
|
|
|
test_pad6(12345, "012345");
|
|
|
|
test_pad6(123456, "123456");
|
|
|
|
test_pad6(123456, "123456");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|