aboutsummaryrefslogtreecommitdiffstats
path: root/util/string/util_ut.cpp
diff options
context:
space:
mode:
authorAnton Samokhvalov <pg83@yandex.ru>2022-02-10 16:45:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:17 +0300
commitd3a398281c6fd1d3672036cb2d63f842d2cb28c5 (patch)
treedd4bd3ca0f36b817e96812825ffaf10d645803f2 /util/string/util_ut.cpp
parent72cb13b4aff9bc9cf22e49251bc8fd143f82538f (diff)
downloadydb-d3a398281c6fd1d3672036cb2d63f842d2cb28c5.tar.gz
Restoring authorship annotation for Anton Samokhvalov <pg83@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'util/string/util_ut.cpp')
-rw-r--r--util/string/util_ut.cpp48
1 files changed, 24 insertions, 24 deletions
diff --git a/util/string/util_ut.cpp b/util/string/util_ut.cpp
index 3e8dcc3b3d..18a2d8e195 100644
--- a/util/string/util_ut.cpp
+++ b/util/string/util_ut.cpp
@@ -1,25 +1,25 @@
-#include "util.h"
-
+#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();
-
+class TStrUtilTest: public TTestBase {
+ UNIT_TEST_SUITE(TStrUtilTest);
+ UNIT_TEST(TestSpn);
+ UNIT_TEST(TestRemoveAll);
+ UNIT_TEST_SUITE_END();
+
public:
- void TestSpn() {
+ void TestSpn() {
str_spn rul("a-z", true);
char s[] = "!@#$ab%^&c+-";
- UNIT_ASSERT_EQUAL(rul.brk(s), s + 4);
- UNIT_ASSERT_EQUAL(rul.brk(s + 4), s + 4);
- UNIT_ASSERT_EQUAL(rul.brk(s + 10), s + 12);
- char* s1 = s;
- UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), "!@#$"), 0);
- UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), ""), 0);
- UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), "%^&"), 0);
- UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), "+-"), 0);
+ UNIT_ASSERT_EQUAL(rul.brk(s), s + 4);
+ UNIT_ASSERT_EQUAL(rul.brk(s + 4), s + 4);
+ UNIT_ASSERT_EQUAL(rul.brk(s + 10), s + 12);
+ char* s1 = s;
+ UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), "!@#$"), 0);
+ UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), ""), 0);
+ UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), "%^&"), 0);
+ UNIT_ASSERT_EQUAL(strcmp(rul.sep(s1), "+-"), 0);
UNIT_ASSERT_EQUAL(rul.sep(s1), nullptr);
}
@@ -28,12 +28,12 @@ public:
const char* Str;
char Ch;
const char* Result;
- } tests[] = {
- {"", 'x', ""},
- {"hello world", 'h', "ello world"},
- {"hello world", 'l', "heo word"},
- {"hello world", 'x', "hello world"},
- };
+ } tests[] = {
+ {"", 'x', ""},
+ {"hello world", 'h', "ello world"},
+ {"hello world", 'l', "heo word"},
+ {"hello world", 'x', "hello world"},
+ };
for (const T* t = tests; t != std::end(tests); ++t) {
TString str(t->Str);
@@ -43,4 +43,4 @@ public:
}
};
-UNIT_TEST_SUITE_REGISTRATION(TStrUtilTest);
+UNIT_TEST_SUITE_REGISTRATION(TStrUtilTest);