QuickFixMultiModule: change tests structure
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
// "Create member function 'Foo.foo'" "true"
|
||||
|
||||
expect class Foo
|
||||
|
||||
fun test(f: Foo) {
|
||||
f.<caret>foo("a", 1)
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// "Create member function 'Foo.foo'" "true"
|
||||
|
||||
expect class Foo {
|
||||
fun foo(s: String, i: Int)
|
||||
}
|
||||
|
||||
fun test(f: Foo) {
|
||||
f.foo("a", 1)
|
||||
}
|
||||
Reference in New Issue
Block a user