[Analysis API] Support multi-module projects in compiler facility tests

This commit is contained in:
Yan Zhulanow
2023-11-07 11:35:10 +09:00
committed by Space Team
parent 894df8f641
commit 1a5b9ad79c
5 changed files with 27 additions and 7 deletions
@@ -13,5 +13,5 @@ fun lib(): String = "foo"
import lib.lib
fun test() {
lib()
<caret>lib()
}
@@ -13,5 +13,5 @@ fun lib(a: Int = 5): String {
import lib.lib
fun test() {
lib()
<caret>lib()
}
@@ -11,5 +11,5 @@ internal fun lib(): String = "foo"
import lib.lib
fun test() {
lib()
<caret>lib()
}