Rename test data folder according to the new test naming convention.

This commit is contained in:
Pavel V. Talanov
2012-08-23 14:25:37 +04:00
parent 4bf2b9054a
commit baca087a02
497 changed files with 349 additions and 350 deletions
@@ -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 @@
namespace test
public open class test.NotNullField : java.lang.Object {
public final /*constructor*/ fun <init>(): test.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 @@
namespace test
public open class test.NotNullMethod : java.lang.Object {
public final /*constructor*/ fun <init>(): test.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 @@
namespace test
public open class test.NotNullParameter : java.lang.Object {
public final /*constructor*/ fun <init>(): test.NotNullParameter
public open fun hi(/*0*/ p0: jet.String): jet.Tuple0
}