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,7 @@
class Base {
private String myFirst;
}
class Child extends Base {
private String mySecond;
}
@@ -0,0 +1,6 @@
open class Base() {
private var myFirst : String? = null
}
open class Child() : Base() {
private var mySecond : String? = null
}
@@ -0,0 +1,3 @@
class C {
Foo f;
}
@@ -0,0 +1,3 @@
open class C() {
var f : Foo? = null
}
@@ -0,0 +1,3 @@
class C {
private Foo f;
}
@@ -0,0 +1,3 @@
open class C() {
private var f : Foo? = null
}
@@ -0,0 +1,3 @@
class C {
protected Foo f;
}
@@ -0,0 +1,3 @@
open class C() {
protected var f : Foo? = null
}
@@ -0,0 +1,3 @@
class C {
public Foo f;
}
@@ -0,0 +1,3 @@
open class C() {
public var f : Foo? = null
}
@@ -0,0 +1,3 @@
class C {
final Foo f = new Foo(1, 2);
}
@@ -0,0 +1,3 @@
open class C() {
val f : Foo? = Foo(1, 2)
}
@@ -0,0 +1,3 @@
class C {
Foo f = new Foo(1, 2);
}
@@ -0,0 +1,3 @@
open class C() {
var f : Foo? = Foo(1, 2)
}
@@ -0,0 +1,3 @@
class C {
Foo f;
}
@@ -0,0 +1,3 @@
open class C() {
var f : Foo? = null
}