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 int getNoofGears();
@@ -0,0 +1 @@
abstract fun getNoofGears() : Int
@@ -0,0 +1 @@
T getT() {}
@@ -0,0 +1,2 @@
fun getT() : T? {
}
@@ -0,0 +1 @@
void main() {}
@@ -0,0 +1,2 @@
fun main() : Unit {
}
@@ -0,0 +1 @@
final String getString() { return ""; }
@@ -0,0 +1,3 @@
fun getString() : String? {
return ""
}
@@ -0,0 +1 @@
void test() {}
@@ -0,0 +1,2 @@
fun test() : Unit {
}
@@ -0,0 +1 @@
public static void main(String[] args) {}
@@ -0,0 +1,4 @@
class object {
public fun main(args : Array<String?>?) : Unit {
}
}
@@ -0,0 +1 @@
String main() {}
@@ -0,0 +1,2 @@
fun main() : String? {
}
@@ -0,0 +1 @@
int main() {}
@@ -0,0 +1,2 @@
fun main() : Int {
}
@@ -0,0 +1 @@
boolean main() {}
@@ -0,0 +1,2 @@
fun main() : Boolean {
}
@@ -0,0 +1 @@
boolean isTrue() { return true; }
@@ -0,0 +1,3 @@
fun isTrue() : Boolean {
return true
}
@@ -0,0 +1 @@
String getString() { return ""; }
@@ -0,0 +1,3 @@
fun getString() : String? {
return ""
}
@@ -0,0 +1 @@
<U> void putU(U u) {}
@@ -0,0 +1,2 @@
fun putU<U>(u : U?) : Unit {
}
@@ -0,0 +1 @@
<U, V, W> void putUVW(U u, V v, W w) {}
@@ -0,0 +1,2 @@
fun putUVW<U, V, W>(u : U?, v : V?, w : W?) : Unit {
}
@@ -0,0 +1 @@
private void test() {}
@@ -0,0 +1,2 @@
private fun test() : Unit {
}
@@ -0,0 +1 @@
protected void test() {}
@@ -0,0 +1,2 @@
protected fun test() : Unit {
}
@@ -0,0 +1 @@
public void test() {}
@@ -0,0 +1,2 @@
public fun test() : Unit {
}