aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/xrange_ut.cpp
diff options
context:
space:
mode:
authorgrand <grand@yandex-team.ru>2022-02-10 16:50:06 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:06 +0300
commit7eb3862cccdb866e7e739123c8024ccec628bb62 (patch)
tree5ce974787810a396bb1c1cca605feef8f9e85679 /util/generic/xrange_ut.cpp
parent13dbd0acb78595551b843005d6bd021bdc1a859b (diff)
downloadydb-7eb3862cccdb866e7e739123c8024ccec628bb62.tar.gz
Restoring authorship annotation for <grand@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/xrange_ut.cpp')
-rw-r--r--util/generic/xrange_ut.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/util/generic/xrange_ut.cpp b/util/generic/xrange_ut.cpp
index 8106da03e7..4575030792 100644
--- a/util/generic/xrange_ut.cpp
+++ b/util/generic/xrange_ut.cpp
@@ -46,22 +46,22 @@ Y_UNIT_TEST_SUITE(XRange) {
}
Y_UNIT_TEST(DecrementWorks) {
- TestSteppedXRangeImpl(10, 0, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1});
- TestSteppedXRangeImpl(10, -1, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0});
- TestSteppedXRangeImpl(20, 9, -1, {20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10});
+ TestSteppedXRangeImpl(10, 0, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1});
+ TestSteppedXRangeImpl(10, -1, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0});
+ TestSteppedXRangeImpl(20, 9, -1, {20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10});
}
Y_UNIT_TEST(StepWorks) {
- TestSteppedXRangeImpl(0, 0, 1, {});
- TestSteppedXRangeImpl(0, 9, 3, {0, 3, 6});
- TestSteppedXRangeImpl(0, 10, 3, {0, 3, 6, 9});
- TestSteppedXRangeImpl(0, 11, 3, {0, 3, 6, 9});
- TestSteppedXRangeImpl(0, 12, 3, {0, 3, 6, 9});
- TestSteppedXRangeImpl(0, 13, 3, {0, 3, 6, 9, 12});
- TestSteppedXRangeImpl(0, 10, 2, {0, 2, 4, 6, 8});
- TestSteppedXRangeImpl(15, 0, -4, {15, 11, 7, 3});
- TestSteppedXRangeImpl(15, -1, -4, {15, 11, 7, 3});
- TestSteppedXRangeImpl(15, -2, -4, {15, 11, 7, 3, -1});
+ TestSteppedXRangeImpl(0, 0, 1, {});
+ TestSteppedXRangeImpl(0, 9, 3, {0, 3, 6});
+ TestSteppedXRangeImpl(0, 10, 3, {0, 3, 6, 9});
+ TestSteppedXRangeImpl(0, 11, 3, {0, 3, 6, 9});
+ TestSteppedXRangeImpl(0, 12, 3, {0, 3, 6, 9});
+ TestSteppedXRangeImpl(0, 13, 3, {0, 3, 6, 9, 12});
+ TestSteppedXRangeImpl(0, 10, 2, {0, 2, 4, 6, 8});
+ TestSteppedXRangeImpl(15, 0, -4, {15, 11, 7, 3});
+ TestSteppedXRangeImpl(15, -1, -4, {15, 11, 7, 3});
+ TestSteppedXRangeImpl(15, -2, -4, {15, 11, 7, 3, -1});
}
Y_UNIT_TEST(PointersWorks) {