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