mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
[kotlin] Implement tests for actual declaration completion with several targets
* #FL-26673 GitOrigin-RevId: 107663afadb72654bb5775157b2ce16ed09a207c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4fd0a3ff91
commit
2e7f2f28b9
@@ -0,0 +1 @@
|
||||
expect fun targetModuleFun()
|
||||
@@ -0,0 +1 @@
|
||||
actual fun targetModuleFun() {}
|
||||
@@ -0,0 +1,4 @@
|
||||
actual<caret>
|
||||
|
||||
// IGNORE_K2
|
||||
// EXIST: {"lookupString": "actual", "module": "testModule_Common", "icon": "Function", "allLookupStrings": "actual, targetModuleFun", "itemText": "actual fun targetModuleFun() {...}"}
|
||||
@@ -42,6 +42,11 @@ public abstract class MultiPlatformCompletionTestGenerated extends AbstractMulti
|
||||
runTest("../testData/multiPlatform/actualDeclaration/actualFun/");
|
||||
}
|
||||
|
||||
@TestMetadata("actualModuleTargetIsNotVisibleInAnotherModule")
|
||||
public void testActualModuleTargetIsNotVisibleInAnotherModule() throws Exception {
|
||||
runTest("../testData/multiPlatform/actualDeclaration/actualModuleTargetIsNotVisibleInAnotherModule/");
|
||||
}
|
||||
|
||||
@TestMetadata("actualVal")
|
||||
public void testActualVal() throws Exception {
|
||||
runTest("../testData/multiPlatform/actualDeclaration/actualVal/");
|
||||
|
||||
@@ -42,6 +42,11 @@ public abstract class K2MultiPlatformCompletionTestGenerated extends AbstractK2M
|
||||
runTest("../../completion/testData/multiPlatform/actualDeclaration/actualFun/");
|
||||
}
|
||||
|
||||
@TestMetadata("actualModuleTargetIsNotVisibleInAnotherModule")
|
||||
public void testActualModuleTargetIsNotVisibleInAnotherModule() throws Exception {
|
||||
runTest("../../completion/testData/multiPlatform/actualDeclaration/actualModuleTargetIsNotVisibleInAnotherModule/");
|
||||
}
|
||||
|
||||
@TestMetadata("actualVal")
|
||||
public void testActualVal() throws Exception {
|
||||
runTest("../../completion/testData/multiPlatform/actualDeclaration/actualVal/");
|
||||
|
||||
Reference in New Issue
Block a user