Granular test configurations

This commit is contained in:
Andrey Breslav
2012-01-27 18:33:46 +04:00
parent 0da39c8bd6
commit d74b79d9db
673 changed files with 113 additions and 4 deletions
@@ -0,0 +1 @@
abstract interface I {}
@@ -0,0 +1,2 @@
abstract trait I {
}
@@ -0,0 +1 @@
interface A {}
@@ -0,0 +1,2 @@
trait A {
}
@@ -0,0 +1 @@
interface A extends I0, I1, I2 {}
@@ -0,0 +1,2 @@
trait A : I0, I1, I2 {
}
@@ -0,0 +1 @@
interface A extends I {}
@@ -0,0 +1,2 @@
trait A : I {
}
@@ -0,0 +1 @@
interface INode {String IN = "in";String AT = "@";String COMMA_WITH_SPACE = COMMA + SPACE;}
@@ -0,0 +1,7 @@
trait INode {
class object {
val IN : String? = "in"
val AT : String? = "@"
val COMMA_WITH_SPACE : String? = COMMA + SPACE
}
}
@@ -0,0 +1 @@
interface INode {Tag getTag();String toKotlin();}
@@ -0,0 +1,4 @@
trait INode {
open fun getTag() : Tag?
open fun toKotlin() : String?
}
@@ -0,0 +1 @@
public interface INode { public static final String IN = "in"; public static final String AT = "@"; public static final String COMMA_WITH_SPACE = COMMA + SPACE;}
@@ -0,0 +1,7 @@
public trait INode {
class object {
public val IN : String? = "in"
public val AT : String? = "@"
public val COMMA_WITH_SPACE : String? = COMMA + SPACE
}
}
@@ -0,0 +1 @@
interface Test {}
@@ -0,0 +1,2 @@
trait Test {
}
@@ -0,0 +1 @@
private interface Test {}
@@ -0,0 +1,2 @@
private trait Test {
}
@@ -0,0 +1 @@
protected interface Test {}
@@ -0,0 +1,2 @@
protected trait Test {
}
@@ -0,0 +1 @@
public interface Test {}
@@ -0,0 +1,2 @@
public trait Test {
}