Add range iteration tests for rangeUntil

#KT-52932
This commit is contained in:
Ilya Gorbunov
2022-06-23 08:45:29 +03:00
committed by Space
parent 50247a0346
commit 1addc23b23
115 changed files with 7797 additions and 1 deletions
@@ -30442,6 +30442,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/ranges/expression/openRange.kt");
}
@TestMetadata("openRangeUntil.kt")
public void testOpenRangeUntil() throws Exception {
runTest("compiler/testData/codegen/box/ranges/expression/openRangeUntil.kt");
}
@TestMetadata("overflowZeroDownToMaxValue.kt")
public void testOverflowZeroDownToMaxValue() throws Exception {
runTest("compiler/testData/codegen/box/ranges/expression/overflowZeroDownToMaxValue.kt");
@@ -31334,6 +31339,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/ranges/literal/openRange.kt");
}
@TestMetadata("openRangeUntil.kt")
public void testOpenRangeUntil() throws Exception {
runTest("compiler/testData/codegen/box/ranges/literal/openRangeUntil.kt");
}
@TestMetadata("overflowZeroDownToMaxValue.kt")
public void testOverflowZeroDownToMaxValue() throws Exception {
runTest("compiler/testData/codegen/box/ranges/literal/overflowZeroDownToMaxValue.kt");
@@ -31562,6 +31572,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/ranges/unsigned/expression/openRange.kt");
}
@TestMetadata("openRangeUntil.kt")
public void testOpenRangeUntil() throws Exception {
runTest("compiler/testData/codegen/box/ranges/unsigned/expression/openRangeUntil.kt");
}
@TestMetadata("overflowZeroDownToMaxValue.kt")
public void testOverflowZeroDownToMaxValue() throws Exception {
runTest("compiler/testData/codegen/box/ranges/unsigned/expression/overflowZeroDownToMaxValue.kt");
@@ -31725,6 +31740,11 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes
runTest("compiler/testData/codegen/box/ranges/unsigned/literal/openRange.kt");
}
@TestMetadata("openRangeUntil.kt")
public void testOpenRangeUntil() throws Exception {
runTest("compiler/testData/codegen/box/ranges/unsigned/literal/openRangeUntil.kt");
}
@TestMetadata("overflowZeroDownToMaxValue.kt")
public void testOverflowZeroDownToMaxValue() throws Exception {
runTest("compiler/testData/codegen/box/ranges/unsigned/literal/overflowZeroDownToMaxValue.kt");