"Make open": Fix false positive for data class inheritance #KT-27354 Fixed

This commit is contained in:
Toshiaki Kameyama
2018-10-03 11:33:27 +09:00
committed by Mikhail Glukhikh
parent 6d73aa29e0
commit 5e7d974767
3 changed files with 12 additions and 1 deletions
@@ -7960,6 +7960,11 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/quickfix/modifiers/addOpenToClassDeclaration"), Pattern.compile("^([\\w\\-_]+)\\.kt$"), TargetBackend.ANY, true);
}
@TestMetadata("dataSuperType.kt")
public void testDataSuperType() throws Exception {
runTest("idea/testData/quickfix/modifiers/addOpenToClassDeclaration/dataSuperType.kt");
}
@TestMetadata("enumSupertype.kt")
public void testEnumSupertype() throws Exception {
runTest("idea/testData/quickfix/modifiers/addOpenToClassDeclaration/enumSupertype.kt");