Moved loadJava "general" tests to subdirectory.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package test;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class NotNullField {
|
||||
@NotNull
|
||||
public String hi;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test;
|
||||
|
||||
public open class NotNullField() : java.lang.Object() {
|
||||
public var hi: String = "";
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class NotNullField : java.lang.Object {
|
||||
public constructor NotNullField()
|
||||
public final var hi : jet.String
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package test;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class NotNullMethod {
|
||||
@NotNull
|
||||
public String hi() { return ""; }
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class NotNullMethod() : java.lang.Object() {
|
||||
public open fun hi(): String = ""
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class NotNullMethod : java.lang.Object {
|
||||
public constructor NotNullMethod()
|
||||
public open fun hi() : jet.String
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
public class NotNullParameter {
|
||||
public void hi(@NotNull String param) { }
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class NotNullParameter() : java.lang.Object() {
|
||||
public open fun hi(p0: String): Unit { }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test
|
||||
|
||||
public open class NotNullParameter : java.lang.Object {
|
||||
public constructor NotNullParameter()
|
||||
public open fun hi(/*0*/ p0 : jet.String) : Unit
|
||||
}
|
||||
Reference in New Issue
Block a user