472ec72eb9
1. Move tests to their own module 2. Avoid sharing the 'tinyApp' project between tests 3. Clean up option directive handling
19 lines
464 B
Kotlin
Vendored
19 lines
464 B
Kotlin
Vendored
// FILE: classFromAnotherPackage.kt
|
|
package classFromAnotherPackage
|
|
|
|
import forTests.MyJavaClass
|
|
|
|
fun main(args: Array<String>) {
|
|
//Breakpoint!
|
|
args.size
|
|
}
|
|
|
|
// EXPRESSION: MyJavaClass()
|
|
// RESULT: instance of forTests.MyJavaClass(id=ID): LforTests/MyJavaClass;
|
|
|
|
// EXPRESSION: forTests.MyJavaClass()
|
|
// RESULT: instance of forTests.MyJavaClass(id=ID): LforTests/MyJavaClass;
|
|
|
|
// FILE: forTests/MyJavaClass.java
|
|
package forTests;
|
|
public class MyJavaClass {} |