コード例 #1
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testCopy() throws Exception {
   args.add("shadow/test/CopyTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "s1: Walnuts\n"
           + "s2: Walnuts\n"
           + "o1: (13,StuffStuff)\n"
           + "o2: (14,Stuff)\n"
           + "integer1: 3\n"
           + "integer2: 3\n"
           + "array1: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]\n"
           + "array2: [2, 4, 6, 8, 10, 12, 14, 16, 18, 20]\n"
           + "array3: [[1, 2, 3, 4, 5], [6, 7, 8, 9, 10], [11, 12, 13, 14, 15], [16, 17, 18, 19, 20]]\n"
           + "array4: [[2, 3, 4, 5, 6], [7, 8, 9, 10, 11], [12, 13, 14, 15, 16], [17, 18, 19, 20, 21]]\n"
           + "array5: [[0, 3, 6, 9, 12], [150, 153, 156, 159, 162], [300, 303, 306, 309, 312], [450, 453, 456, 459, 462]]\n"
           + "array6: [[0, 1, 2, 3, 4], [50, 51, 52, 53, 54], [100, 101, 102, 103, 104], [150, 151, 152, 153, 154]]\n"
           + "array7: [[[0, 2, 4], [6, 8, 10]]]\n"
           + "array8: [[[0, 1, 2], [3, 4, 5]]]\n"
           + "array9: [[0, 2, 4], [6, 8, 10, 12]]\n"
           + "array10: [[0, 1, 2], [3, 4, 5, 6]]\n"
           + "matrix1: [3.0, 2.0, 0.0]\n"
           + "[0.0, 0.0, 7.0]\n"
           + "\n"
           + "matrix2: [0.0, 2.0, 0.0]\n"
           + "[0.0, 0.0, 5.0]\n\n");
 }
コード例 #2
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testLoop() throws Exception {
   args.add("shadow/test/LoopTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "before outer\n"
           + "try before outer\n"
           + "loop before skip\n"
           + "try before skip\n"
           + "try after skip\n"
           + "finally skip\n"
           + "loop after skip\n"
           + "loop before skip\n"
           + "try before skip\n"
           + "try after skip\n"
           + "finally skip\n"
           + "loop after skip\n"
           + "loop before continue\n"
           + "try before continue\n"
           + "finally continue\n"
           + "loop before continue\n"
           + "try before continue\n"
           + "finally continue\n"
           + "loop before break\n"
           + "try before break\n"
           + "finally break\n"
           + "try after outer\n"
           + "before return first\n"
           + "finally outer\n"
           + "before return second\n"
           + "after return second\n"
           + "return first\n");
 }
コード例 #3
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testTry() throws Exception {
   args.add("shadow/test/TryTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "before throw\n" + "catch (shadow:standard@Exception: message)\n" + "finally\n");
 }
コード例 #4
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testChild() throws Exception {
   args.add("shadow/test/ChildTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "shadow:test@ParentTest:create(\"Hello World!\")\n" + "shadow:test@ChildTest:main([])\n");
 }
コード例 #5
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testArray() throws Exception {
   args.add("shadow/test/ArrayTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "[0, 2, four, 88, shadow:standard@Object]\n" + "[0, 1, 2, 3, 4]\n" + "[zero, one, two]\n");
 }
コード例 #6
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testInterfaceCreate() throws Exception {
   args.add("shadow/test/InterfaceCreateTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "",
       "shadow:standard@InterfaceCreateException: Cannot create interface shadow:standard@CanCreate\n");
 }
コード例 #7
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testArrayCastException() throws Exception {
   args.add("shadow/test/ArrayCastExceptionTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "Passed\n"
           + "Passed: shadow:standard@CastException: Array dimensions do not match\n"
           + "Passed: shadow:standard@CastException: Array dimensions do not match\n");
 }
コード例 #8
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testInterface() throws Exception {
   args.add("shadow/test/InterfaceTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "shadow:test@Cheetah runs at 75 mph.\n"
           + "shadow:test@Hare runs at 40 mph.\n"
           + "shadow:test@Tortoise runs slow and steady.\n"
           + "shadow:test@Tortoise runs slow and steady.\n"
           + "shadow:test@Cheetah runs at 75 mph.\n"
           + "shadow:test@Hare runs at 40 mph.\n");
 }
コード例 #9
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testArrayList() throws Exception {
   args.add("shadow/test/ArrayListTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[] {"all", "good", "men", "shall", "perish"},
       "true\n"
           + "true\n"
           + "false\n"
           + "all\n"
           + "men\n"
           + "shall\n"
           + "[all, men, shall]\n"
           + "[4, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225]\n");
 }
コード例 #10
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testToughTry() throws Exception {
   args.add("shadow/test/ToughTry.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "test 1\n"
           + "16\n"
           + "finally\n"
           + "test 2\n"
           + "catch (shadow:standard@Exception)\n"
           + "finally\n"
           + "test 3\n"
           + "finally\n"
           + "Result: 3\n");
 }
コード例 #11
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testArrayDefault() throws Exception {
   args.add("shadow/test/ArrayDefaultTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "a[0]: Wombat\n"
           + "a[1]: Wombat\n"
           + "a[2]: Wombat\n"
           + "a[3]: Wombat\n"
           + "a[4]: Wombat\n"
           + "b[0]: 42\n"
           + "b[1]: 42\n"
           + "b[2]: 42\n"
           + "b[3]: 42\n"
           + "b[4]: 42\n");
 }
コード例 #12
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testHashMap() throws Exception {
   args.add("shadow/test/HashMapTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "Passed 1\n"
           + "Passed 2\n"
           + "Passed 3\n"
           + "Bozo\n"
           + "{Sandwich=20, Clothes=58}\n"
           + "Deal\n"
           + "Passed 4\n"
           + "Passed 5\n"
           + "Passed 6\n"
           + "Passed 7\n"
           + "Passed 8\n"
           + "Passed 9\n"
           + "Passed 10\n");
 }
コード例 #13
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testSwitch() throws Exception {
   args.add("shadow/test/SwitchTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[] {"bedula", "sesame"},
       "Default!\n"
           + "Default!\n"
           + "Three!\n"
           + "Four!\n"
           + "Five\n"
           + "Default!\n"
           + "Others!\n"
           + "Others!\n"
           + "Others!\n"
           + "Ten!\n"
           + "Welcome, bedula\n"
           + "That's the magic word!\n"
           + "separate scopes\n");
 }
コード例 #14
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testCheck() throws Exception {
   args.add("shadow/test/PrimitiveTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(new String[0], "5\n" + "5\n" + "5\n" + "5\n" + "5\n" + "8\n");
 }
コード例 #15
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testConsole() throws Exception {
   args.add("shadow/test/ConsoleTest.shadow");
   Main.run(args.toArray(new String[] {}));
   // can't test this one because it requires user input
 }
コード例 #16
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testException() throws Exception {
   args.add("shadow/test/ExceptionTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(new String[0], "test2 caught ExceptionB\n", "shadow:standard@Exception\n");
 }
コード例 #17
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testFile() throws Exception {
   args.add("shadow/test/FileTest.shadow");
   Main.run(args.toArray(new String[] {}));
   // can't test this without a file
 }
コード例 #18
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testSort() throws Exception {
   args.add("shadow/test/SortMain.shadow");
   Main.run(args.toArray(new String[] {}));
   // can't put test in because of timing data
 }
コード例 #19
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testArrayCreate() throws Exception {
   args.add("shadow/test/ArrayCreateTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(
       new String[0],
       "a[0]: \n"
           + "a[1]: \n"
           + "a[2]: \n"
           + "a[3]: \n"
           + "a[4]: \n"
           + "a[5]: \n"
           + "a[6]: \n"
           + "a[7]: \n"
           + "a[8]: \n"
           + "a[9]: \n"
           + "b[0]: Test\n"
           + "b[1]: Test\n"
           + "b[2]: Test\n"
           + "b[3]: Test\n"
           + "b[4]: Test\n"
           + "b[5]: Test\n"
           + "b[6]: Test\n"
           + "b[7]: Test\n"
           + "b[8]: Test\n"
           + "b[9]: Test\n"
           + "c[0]: 5\n"
           + "c[1]: 5\n"
           + "c[2]: 5\n"
           + "c[3]: 5\n"
           + "c[4]: 5\n"
           + "c[5]: 5\n"
           + "c[6]: 5\n"
           + "c[7]: 5\n"
           + "c[8]: 5\n"
           + "c[9]: 5\n"
           + "d[0]: 1\n"
           + "d[1]: 2\n"
           + "d[2]: 3\n"
           + "d[3]: 4\n"
           + "d[4]: 5\n"
           + "d[5]: 6\n"
           + "d[6]: 7\n"
           + "d[7]: 8\n"
           + "d[8]: 9\n"
           + "d[9]: 10\n"
           + "e[0][0]: 1\n"
           + "e[0][1]: 2\n"
           + "e[0][2]: 3\n"
           + "e[0][3]: 4\n"
           + "e[0][4]: 5\n"
           + "e[1][0]: 6\n"
           + "e[1][1]: 7\n"
           + "e[1][2]: 8\n"
           + "e[1][3]: 9\n"
           + "e[1][4]: 10\n"
           + "e[2][0]: 11\n"
           + "e[2][1]: 12\n"
           + "e[2][2]: 13\n"
           + "e[2][3]: 14\n"
           + "e[2][4]: 15\n"
           + "f[0,0]: 1\n"
           + "f[0,1]: 2\n"
           + "f[0,2]: 3\n"
           + "f[0,3]: 4\n"
           + "f[0,4]: 5\n"
           + "f[1,0]: 6\n"
           + "f[1,1]: 7\n"
           + "f[1,2]: 8\n"
           + "f[1,3]: 9\n"
           + "f[1,4]: 10\n"
           + "f[2,0]: 11\n"
           + "f[2,1]: 12\n"
           + "f[2,2]: 13\n"
           + "f[2,3]: 14\n"
           + "f[2,4]: 15\n");
 }
コード例 #20
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testNullableWithoutCheck() throws Exception {
   args.add("shadow/test/NullableWithoutCheckTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(new String[0], "", "shadow:standard@UnexpectedNullException\n");
 }
コード例 #21
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testNullableWithCheck() throws Exception {
   args.add("shadow/test/NullableWithCheckTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(new String[0], "Recovered!\n");
 }
コード例 #22
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testSimple() throws Exception {
   args.add("shadow/test/SimpleTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(new String[0], "Hello, world!\n");
 }
コード例 #23
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testCreateStringInConstant() throws Exception {
   args.add("shadow/test/CreateStringInConstantTest.shadow");
   Main.run(args.toArray(new String[] {}));
   run(new String[0], "Empty: \nNon-empty: Hello!\n");
 }
コード例 #24
0
ファイル: OutputTest.java プロジェクト: yatryan/shadow
 @Test
 public void testTest() throws Exception {
   args.add("shadow/test/Test.shadow");
   Main.run(args.toArray(new String[] {}));
   run(new String[0], "true\n" + "true\n" + "false\n" + "false\n" + "true\n");
 }