Add tests for data class runtime string concatenation

#KT-35176
This commit is contained in:
Mikhael Bogdanov
2020-10-06 09:05:59 +02:00
parent eb32a6ddbd
commit ed5c2b0565
5 changed files with 43 additions and 0 deletions
@@ -4538,6 +4538,11 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/concatDynamicConstants.kt");
}
@TestMetadata("concatDynamicDataClass.kt")
public void testConcatDynamicDataClass() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/concatDynamicDataClass.kt");
}
@TestMetadata("concatDynamicIndy.kt")
public void testConcatDynamicIndy() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/concatDynamicIndy.kt");
@@ -4548,6 +4553,11 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/concatDynamicIndy201.kt");
}
@TestMetadata("concatDynamicIndyDataClass.kt")
public void testConcatDynamicIndyDataClass() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/concatDynamicIndyDataClass.kt");
}
@TestMetadata("concatNotDynamic.kt")
public void testConcatNotDynamic() throws Exception {
runTest("compiler/testData/codegen/bytecodeText/stringOperations/concatNotDynamic.kt");