AA: tests about equals on sealed/data class

^KT-54844 In Progress
This commit is contained in:
Jinseong Jeon
2022-09-20 14:10:53 -07:00
committed by Ilya Kirillov
parent a4cd485f48
commit b2e239a542
10 changed files with 201 additions and 0 deletions
@@ -364,6 +364,24 @@ public class FirStandaloneNormalAnalysisSourceModuleResolveCallTestGenerated ext
runTest("analysis/analysis-api/testData/components/callResolver/resolveCall/eqEqCall_fromAny.kt");
}
@Test
@TestMetadata("eqEqCall_fromDataClass.kt")
public void testEqEqCall_fromDataClass() throws Exception {
runTest("analysis/analysis-api/testData/components/callResolver/resolveCall/eqEqCall_fromDataClass.kt");
}
@Test
@TestMetadata("eqEqCall_fromDataClass_overridden.kt")
public void testEqEqCall_fromDataClass_overridden() throws Exception {
runTest("analysis/analysis-api/testData/components/callResolver/resolveCall/eqEqCall_fromDataClass_overridden.kt");
}
@Test
@TestMetadata("eqEqCall_fromSealedClass.kt")
public void testEqEqCall_fromSealedClass() throws Exception {
runTest("analysis/analysis-api/testData/components/callResolver/resolveCall/eqEqCall_fromSealedClass.kt");
}
@Test
@TestMetadata("eqEqCall_fromSuperType.kt")
public void testEqEqCall_fromSuperType() throws Exception {