diff options
author | Anton Samokhvalov <pg83@yandex.ru> | 2022-02-10 16:45:15 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:15 +0300 |
commit | 72cb13b4aff9bc9cf22e49251bc8fd143f82538f (patch) | |
tree | da2c34829458c7d4e74bdfbdf85dff449e9e7fb8 /util/string/printf_ut.cpp | |
parent | 778e51ba091dc39e7b7fcab2b9cf4dbedfb6f2b5 (diff) | |
download | ydb-72cb13b4aff9bc9cf22e49251bc8fd143f82538f.tar.gz |
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 1 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 2b2f980b70..1913966e72 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")); } -} +} |