QuickFixMultiModule: change tests structure
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// "Create actual class for module testModule_JVM (JVM)" "true"
|
||||
|
||||
expect class <caret>WithNested {
|
||||
fun foo(): Int
|
||||
|
||||
class Nested {
|
||||
fun bar()
|
||||
}
|
||||
|
||||
inner class Inner {
|
||||
fun baz()
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
// "Create actual class for module testModule_JVM (JVM)" "true"
|
||||
|
||||
expect class WithNested {
|
||||
fun foo(): Int
|
||||
|
||||
class Nested {
|
||||
fun bar()
|
||||
}
|
||||
|
||||
inner class Inner {
|
||||
fun baz()
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
// WithNested: to be implemented
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
// WithNested: to be implemented
|
||||
actual class WithNested {
|
||||
actual fun foo(): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
}
|
||||
|
||||
actual class Nested {
|
||||
actual fun bar() {
|
||||
}
|
||||
}
|
||||
|
||||
actual inner class Inner {
|
||||
actual fun baz() {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user