Remove wrong condition part: there could be irrelevant overrides from Kotlin

This commit is contained in:
Denis Zharkov
2015-10-28 11:26:55 +03:00
parent 291f0e57d1
commit 5755af6b27
10 changed files with 363 additions and 2 deletions
@@ -215,6 +215,30 @@ public class BlackBoxWithJavaCodegenTestGenerated extends AbstractBlackBoxCodege
doTestWithJava(fileName);
}
@TestMetadata("irrelevantImplCharSequenceKotlin")
public void testIrrelevantImplCharSequenceKotlin() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxWithJava/collections/irrelevantImplCharSequenceKotlin/");
doTestWithJava(fileName);
}
@TestMetadata("irrelevantImplMutableList")
public void testIrrelevantImplMutableList() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxWithJava/collections/irrelevantImplMutableList/");
doTestWithJava(fileName);
}
@TestMetadata("irrelevantImplMutableListKotlin")
public void testIrrelevantImplMutableListKotlin() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxWithJava/collections/irrelevantImplMutableListKotlin/");
doTestWithJava(fileName);
}
@TestMetadata("irrelevantImplMutableListSubstitution")
public void testIrrelevantImplMutableListSubstitution() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxWithJava/collections/irrelevantImplMutableListSubstitution/");
doTestWithJava(fileName);
}
@TestMetadata("irrelevantRemoveAtOverrideInJava")
public void testIrrelevantRemoveAtOverrideInJava() throws Exception {
String fileName = JetTestUtils.navigationMetadata("compiler/testData/codegen/boxWithJava/collections/irrelevantRemoveAtOverrideInJava/");