diff options
author | tejblum <tejblum@yandex-team.ru> | 2022-02-10 16:48:02 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:02 +0300 |
commit | 2bf39531b4f50b889e946ac4866018678a4fb281 (patch) | |
tree | 65ee082892af9db55f726e13950abf0b1cc65992 /util/string/util_ut.cpp | |
parent | a61e8c559b6b690a019253067224d595e3d642f1 (diff) | |
download | ydb-2bf39531b4f50b889e946ac4866018678a4fb281.tar.gz |
Restoring authorship annotation for <tejblum@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string/util_ut.cpp')
-rw-r--r-- | util/string/util_ut.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/string/util_ut.cpp b/util/string/util_ut.cpp index 18a2d8e195..6a214a2761 100644 --- a/util/string/util_ut.cpp +++ b/util/string/util_ut.cpp @@ -1,14 +1,14 @@ #include "util.h" #include <library/cpp/testing/unittest/registar.h> - + class TStrUtilTest: public TTestBase { UNIT_TEST_SUITE(TStrUtilTest); UNIT_TEST(TestSpn); UNIT_TEST(TestRemoveAll); UNIT_TEST_SUITE_END(); -public: +public: void TestSpn() { str_spn rul("a-z", true); char s[] = "!@#$ab%^&c+-"; @@ -41,6 +41,6 @@ public: UNIT_ASSERT_EQUAL(t->Result, str); } } -}; - +}; + UNIT_TEST_SUITE_REGISTRATION(TStrUtilTest); |