QuickFixMultiModule: change tests structure
This commit is contained in:
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package foo
|
||||
|
||||
class Bar {
|
||||
|
||||
}
|
||||
idea/testData/multiModuleQuickFix/other/addFunctionToCommonClassFromJavaUsage/common/common.kt.after
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
package foo
|
||||
|
||||
class Bar {
|
||||
fun someFun() {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
// "Add method 'someFun' to 'Bar'" "true"
|
||||
|
||||
public class Use {
|
||||
public static void use(foo.Bar bar) {
|
||||
bar.s<caret>omeFun();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user