KT-1051 Java interoperability completion - more tests

This commit is contained in:
Nikolay Krasko
2012-02-07 13:32:46 +04:00
parent d3c37f65e4
commit aa9b2db300
10 changed files with 49 additions and 26 deletions
@@ -0,0 +1,9 @@
public class Testing {
public static void test() {
jettesting.some.<caret>
}
}
// EXIST: ClassFromJet
// EXIST: namespace
// NUMBER: 2
@@ -0,0 +1,4 @@
package jettesting.some
class ClassFromJet {
}
@@ -1,7 +0,0 @@
public class Testing {
public static void test() {
jett<caret>
}
}
// EXIST: jettesting
@@ -1,4 +0,0 @@
package jettesting
class ClassFromJet {
}
@@ -0,0 +1,6 @@
public class Testing implements TraitFr<caret> {
public static void test() {
}
}
// EXIST: TraitFromJet
@@ -0,0 +1,4 @@
package jettesting.traits
trait TraitFromJet {
}