aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yson_pull/ut/cescape_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /library/cpp/yson_pull/ut/cescape_ut.cpp
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
downloadydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/yson_pull/ut/cescape_ut.cpp')
-rw-r--r--library/cpp/yson_pull/ut/cescape_ut.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/yson_pull/ut/cescape_ut.cpp b/library/cpp/yson_pull/ut/cescape_ut.cpp
index 6628ba1d15..8e1547cdac 100644
--- a/library/cpp/yson_pull/ut/cescape_ut.cpp
+++ b/library/cpp/yson_pull/ut/cescape_ut.cpp
@@ -39,20 +39,20 @@ namespace {
} // anonymous namespace
-Y_UNIT_TEST_SUITE(CEscape) {
- Y_UNIT_TEST(ExhaustiveOneChar) {
+Y_UNIT_TEST_SUITE(CEscape) {
+ Y_UNIT_TEST(ExhaustiveOneChar) {
test_exhaustive<1>();
}
- Y_UNIT_TEST(ExhaustiveTwoChars) {
+ Y_UNIT_TEST(ExhaustiveTwoChars) {
test_exhaustive<2>();
}
- Y_UNIT_TEST(ExhaustiveThreeChars) {
+ Y_UNIT_TEST(ExhaustiveThreeChars) {
test_exhaustive<3>();
}
- Y_UNIT_TEST(SpecialEscapeEncode) {
+ Y_UNIT_TEST(SpecialEscapeEncode) {
//UNIT_ASSERT_VALUES_EQUAL(R"(\b)", NCEscape::encode("\b"));
//UNIT_ASSERT_VALUES_EQUAL(R"(\f)", NCEscape::encode("\f"));
UNIT_ASSERT_VALUES_EQUAL(R"(\n)", NCEscape::encode("\n"));
@@ -60,7 +60,7 @@ Y_UNIT_TEST_SUITE(CEscape) {
UNIT_ASSERT_VALUES_EQUAL(R"(\t)", NCEscape::encode("\t"));
}
- Y_UNIT_TEST(SpecialEscapeDecode) {
+ Y_UNIT_TEST(SpecialEscapeDecode) {
UNIT_ASSERT_VALUES_EQUAL("\b", NCEscape::decode(R"(\b)"));
UNIT_ASSERT_VALUES_EQUAL("\f", NCEscape::decode(R"(\f)"));
UNIT_ASSERT_VALUES_EQUAL("\n", NCEscape::decode(R"(\n)"));
@@ -68,4 +68,4 @@ Y_UNIT_TEST_SUITE(CEscape) {
UNIT_ASSERT_VALUES_EQUAL("\t", NCEscape::decode(R"(\t)"));
}
-} // Y_UNIT_TEST_SUITE(CEscape)
+} // Y_UNIT_TEST_SUITE(CEscape)