[Analysis API] Add symbol tests for properties from libraries

^KT-62888
^KT-62651
This commit is contained in:
Dmitrii Gridin
2023-12-29 22:42:40 +01:00
committed by Space Team
parent faf33e4fa4
commit a341dc704f
52 changed files with 3190 additions and 3 deletions
@@ -166,6 +166,78 @@ public class FirStandaloneNormalAnalysisSourceModuleSymbolByReferenceTestGenerat
runTest("analysis/analysis-api/testData/symbols/symbolByReference/javaSyntheticAccessor.kt");
}
@Test
@TestMetadata("libraryConstructorProperty.kt")
public void testLibraryConstructorProperty() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryConstructorProperty.kt");
}
@Test
@TestMetadata("libraryConstructorPropertyWithAnnotations.kt")
public void testLibraryConstructorPropertyWithAnnotations() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryConstructorPropertyWithAnnotations.kt");
}
@Test
@TestMetadata("libraryConstructorVariable.kt")
public void testLibraryConstructorVariable() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryConstructorVariable.kt");
}
@Test
@TestMetadata("libraryConstructorVariableWithAnnotations.kt")
public void testLibraryConstructorVariableWithAnnotations() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryConstructorVariableWithAnnotations.kt");
}
@Test
@TestMetadata("libraryMemberProperty.kt")
public void testLibraryMemberProperty() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryMemberProperty.kt");
}
@Test
@TestMetadata("libraryMemberPropertyWithAnnotations.kt")
public void testLibraryMemberPropertyWithAnnotations() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryMemberPropertyWithAnnotations.kt");
}
@Test
@TestMetadata("libraryMemberVariable.kt")
public void testLibraryMemberVariable() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryMemberVariable.kt");
}
@Test
@TestMetadata("libraryMemberVariableWithAnnotations.kt")
public void testLibraryMemberVariableWithAnnotations() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryMemberVariableWithAnnotations.kt");
}
@Test
@TestMetadata("libraryProperty.kt")
public void testLibraryProperty() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryProperty.kt");
}
@Test
@TestMetadata("libraryPropertyWithAnnotations.kt")
public void testLibraryPropertyWithAnnotations() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryPropertyWithAnnotations.kt");
}
@Test
@TestMetadata("libraryVariable.kt")
public void testLibraryVariable() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryVariable.kt");
}
@Test
@TestMetadata("libraryVariableWithAnnotations.kt")
public void testLibraryVariableWithAnnotations() throws Exception {
runTest("analysis/analysis-api/testData/symbols/symbolByReference/libraryVariableWithAnnotations.kt");
}
@Test
@TestMetadata("primaryConstructorValueParameter.kt")
public void testPrimaryConstructorValueParameter() throws Exception {