diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:17 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:17 +0300 |
commit | d3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch) | |
tree | dd4bd3ca0f36b817e96812825ffaf10d645803f2 /util/string/printf_ut.cpp | |
parent | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff) | |
download | ydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'util/string/printf_ut.cpp')
-rw-r--r-- | util/string/printf_ut.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/util/string/printf_ut.cpp b/util/string/printf_ut.cpp index 1913966e72..2b2f980b70 100644 --- a/util/string/printf_ut.cpp +++ b/util/string/printf_ut.cpp @@ -1,5 +1,5 @@ -#include "printf.h" - +#include "printf.h" + #include <library/cpp/testing/unittest/registar.h> Y_UNIT_TEST_SUITE(TStringPrintf) { @@ -7,24 +7,24 @@ Y_UNIT_TEST_SUITE(TStringPrintf) { TString s; int len = sprintf(s, "Hello %s", "world"); UNIT_ASSERT_EQUAL(s, TString("Hello world")); - UNIT_ASSERT_EQUAL(len, 11); + UNIT_ASSERT_EQUAL(len, 11); } - + Y_UNIT_TEST(TestFcat) { TString s; - int len = sprintf(s, "Hello %s", "world"); + int len = sprintf(s, "Hello %s", "world"); UNIT_ASSERT_EQUAL(s, TString("Hello world")); - UNIT_ASSERT_EQUAL(len, 11); - len = fcat(s, " qwqw%s", "as"); + UNIT_ASSERT_EQUAL(len, 11); + len = fcat(s, " qwqw%s", "as"); UNIT_ASSERT_EQUAL(s, TString("Hello world qwqwas")); - UNIT_ASSERT_EQUAL(len, 7); - } - + UNIT_ASSERT_EQUAL(len, 7); + } + Y_UNIT_TEST(TestSpecial) { UNIT_ASSERT_EQUAL("4294967295", Sprintf("%" PRIu32, (ui32)(-1))); - } + } Y_UNIT_TEST(TestExplicitPositions) { UNIT_ASSERT_EQUAL("abc xyz abc", Sprintf("%1$s %2$s %1$s", "abc", "xyz")); } -} +} |