vm/src/test/java/org/apidesign/vm4brwsr/ExceptionsTest.java
author tzezula
Sat, 08 Dec 2012 10:32:04 +0100
branchexceptions
changeset 287 6f696a0ef12f
parent 248 vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java@0bfcb6585290
parent 286 vm/src/test/java/org/apidesign/vm4brwsr/ArrayTest.java@15053b74bdd9
child 400 5452b9fbd253
permissions -rw-r--r--
'synched w/ trunk'
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.vm4brwsr;
    19 
    20 import javax.script.Invocable;
    21 import javax.script.ScriptException;
    22 import static org.testng.Assert.*;
    23 import org.testng.annotations.BeforeClass;
    24 import org.testng.annotations.Test;
    25 
    26 /**
    27  *
    28  * @author Tomas Zezula <tzezula@netbeans.org>
    29  */
    30 public class ExceptionsTest {
    31     @Test
    32     public void verifyMethodWithTryCatchNoThrow() throws Exception {
    33             assertExec(
    34                     "No throw",
    35                     Exceptions.class,
    36                     "methodWithTryCatchNoThrow__I",
    37                     new Double(1.0));
    38     }
    39 
    40     @Test
    41     public void verifyMethodWithTryCatchThrow() throws Exception {
    42             assertExec(
    43                     "Throw",
    44                     Exceptions.class,
    45                     "methodWithTryCatchThrow__I",
    46                     new Double(2.0));
    47     }
    48     
    49     private static CharSequence codeSeq;
    50     private static Invocable code;
    51     
    52     @BeforeClass 
    53     public void compileTheCode() throws Exception {
    54         StringBuilder sb = new StringBuilder();
    55         code = StaticMethodTest.compileClass(sb, 
    56             "org/apidesign/vm4brwsr/Exceptions"
    57         );
    58         codeSeq = sb;
    59     }
    60     private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
    61         StaticMethodTest.assertExec(code, codeSeq, msg, clazz, method, expRes, args);
    62     }
    63 }