now we read tests files from directories

This commit is contained in:
Sergey Ignatov
2011-11-04 20:16:37 +04:00
parent f8adc88299
commit 433405c4e1
470 changed files with 883 additions and 2124 deletions
@@ -0,0 +1 @@
myArray[myLibrary.calculateIndex(100)]
@@ -0,0 +1 @@
myArray[myLibrary.calculateIndex(100)]
@@ -0,0 +1 @@
myArray[10]
@@ -0,0 +1 @@
myArray[10]
@@ -0,0 +1 @@
myArray[i]
@@ -0,0 +1 @@
myArray[i]
@@ -0,0 +1 @@
new int[] {1, 2, 3};
@@ -0,0 +1 @@
array(1, 2, 3)
@@ -0,0 +1 @@
{1, 2, 3};
@@ -0,0 +1 @@
array(1, 2, 3)
@@ -0,0 +1 @@
{a, b, c};
@@ -0,0 +1 @@
array(a, b, c)
@@ -0,0 +1 @@
{ {1, 2, 3}, {4, 5, 6}, {7, 8, 9} };
@@ -0,0 +1 @@
array(array(1, 2, 3), array(4, 5, 6), array(7, 8, 9))
@@ -0,0 +1 @@
void fromArrayToCollection(Foo[] a) {}
@@ -0,0 +1 @@
fun fromArrayToCollection(a : Array<Foo?>?) : Unit { }
@@ -0,0 +1 @@
int [][] d2 = new int[][]{};
@@ -0,0 +1 @@
var d2 : Array<IntArray?>? = array()
@@ -0,0 +1 @@
int [][] d2 = new int[5][];
@@ -0,0 +1 @@
var d2 : Array<IntArray?>? = Array<IntArray?>?(5, {null})
@@ -0,0 +1 @@
double[] a = new double[]{1, 2, 3}
@@ -0,0 +1 @@
var a : DoubleArray? = array(1, 2, 3)
@@ -0,0 +1 @@
long[] a = new long[]{1, 2, 3}
@@ -0,0 +1 @@
var a : LongArray? = array(1, 2, 3)
@@ -0,0 +1 @@
int[] a = new int[]{1, 2, 3}
@@ -0,0 +1 @@
var a : IntArray? = array(1, 2, 3)
@@ -0,0 +1 @@
String[] a = new String[]{"abc"}
@@ -0,0 +1 @@
var a : Array<String?>? = array("abc")
@@ -0,0 +1 @@
assert boolMethod();
@@ -0,0 +1 @@
assert {boolMethod()}
@@ -0,0 +1 @@
assert(boolMethod());
@@ -0,0 +1 @@
assert {(boolMethod())}
@@ -0,0 +1 @@
assert true : "string details";
@@ -0,0 +1 @@
assert("string details") {true}
@@ -0,0 +1 @@
x &= 2
@@ -0,0 +1 @@
x = (x and 2)
@@ -0,0 +1 @@
x = 2
@@ -0,0 +1 @@
x = 2
@@ -0,0 +1 @@
x /= 2
@@ -0,0 +1 @@
x /= 2
@@ -0,0 +1 @@
x -= 2
@@ -0,0 +1 @@
x -= 2
@@ -0,0 +1 @@
x *= 2
@@ -0,0 +1 @@
x *= 2
@@ -0,0 +1 @@
x |= 2
@@ -0,0 +1 @@
x = (x or 2)
@@ -0,0 +1 @@
x += 2
@@ -0,0 +1 @@
x += 2
@@ -0,0 +1 @@
x %= 2
@@ -0,0 +1 @@
x %= 2
@@ -0,0 +1 @@
x <<= 2
@@ -0,0 +1 @@
x = (x shl 2)
@@ -0,0 +1 @@
x >>= 2
@@ -0,0 +1 @@
x = (x shr 2)
@@ -0,0 +1 @@
x >>>= 2
@@ -0,0 +1 @@
x = x.cyclicShiftRight(2)
@@ -0,0 +1 @@
x ^= 2
@@ -0,0 +1 @@
x = (x xor 2)
@@ -0,0 +1 @@
i = 1;
@@ -0,0 +1 @@
i = 1
@@ -0,0 +1 @@
x & 2
@@ -0,0 +1 @@
(x and 2)
@@ -0,0 +1 @@
true && false
@@ -0,0 +1 @@
(true && false)
@@ -0,0 +1 @@
true || false
@@ -0,0 +1 @@
(true || false)
@@ -0,0 +1 @@
1 / 2
@@ -0,0 +1 @@
(1 / 2)
@@ -0,0 +1 @@
1 > 2
@@ -0,0 +1 @@
(1 > 2)
@@ -0,0 +1 @@
1 >= 2
@@ -0,0 +1 @@
(1 >= 2)
@@ -0,0 +1 @@
1 < 2
@@ -0,0 +1 @@
(1 < 2)
@@ -0,0 +1 @@
1 <= 2
@@ -0,0 +1 @@
(1 <= 2)
@@ -0,0 +1 @@
1 - 2
@@ -0,0 +1 @@
(1 - 2)
@@ -0,0 +1 @@
1 * 2
@@ -0,0 +1 @@
(1 * 2)
@@ -0,0 +1 @@
x | 2
@@ -0,0 +1 @@
(x or 2)
@@ -0,0 +1 @@
1 + 2
@@ -0,0 +1 @@
(1 + 2)
@@ -0,0 +1 @@
1 % 2
@@ -0,0 +1 @@
(1 % 2)
@@ -0,0 +1 @@
x << 2
@@ -0,0 +1 @@
(x shl 2)
@@ -0,0 +1 @@
x >> 2
@@ -0,0 +1 @@
(x shr 2)
@@ -0,0 +1 @@
x >>> 2
@@ -0,0 +1 @@
x.cyclicShiftRight(2)
@@ -0,0 +1 @@
x ^ 2
@@ -0,0 +1 @@
(x xor 2)
@@ -0,0 +1 @@
Boolean i = 10;
@@ -0,0 +1 @@
var i : Boolean? = 10
@@ -0,0 +1 @@
Byte i = 10;
@@ -0,0 +1 @@
var i : Byte? = 10
@@ -0,0 +1 @@
Character i = 10;
@@ -0,0 +1 @@
var i : Char? = 10

Some files were not shown because too many files have changed in this diff Show More