| 41 | } |
| 42 | |
| 43 | Y_UNIT_TEST(IncrementWorks) { |
| 44 | TestXRangeImpl(0, 10); |
| 45 | TestXRangeImpl(10, 20); |
| 46 | } |
| 47 | |
| 48 | Y_UNIT_TEST(DecrementWorks) { |
| 49 | TestSteppedXRangeImpl(10, 0, -1, {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}); |
nothing calls this directly
no test coverage detected