rt/vm/src/test/java/org/apidesign/vm4brwsr/UnderTest.java
changeset 1409 3d1612be40bc
parent 789 bb7506513353
child 1787 ea12a3bb4b33
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/rt/vm/src/test/java/org/apidesign/vm4brwsr/UnderTest.java	Thu Nov 07 09:41:45 2013 +0100
     1.3 @@ -0,0 +1,88 @@
     1.4 +/**
     1.5 + * Back 2 Browser Bytecode Translator
     1.6 + * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     1.7 + *
     1.8 + * This program is free software: you can redistribute it and/or modify
     1.9 + * it under the terms of the GNU General Public License as published by
    1.10 + * the Free Software Foundation, version 2 of the License.
    1.11 + *
    1.12 + * This program is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.15 + * GNU General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU General Public License
    1.18 + * along with this program. Look for COPYING file in the top folder.
    1.19 + * If not, see http://opensource.org/licenses/GPL-2.0.
    1.20 + */
    1.21 +package org.apidesign.vm4brwsr;
    1.22 +
    1.23 +import org.testng.annotations.AfterClass;
    1.24 +import org.testng.annotations.BeforeClass;
    1.25 +import org.testng.annotations.Test;
    1.26 +
    1.27 +/** Checks behavior of classes and methods with underscore.
    1.28 + *
    1.29 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.30 + */
    1.31 +public class UnderTest {
    1.32 +    @Test public void one() throws Exception {
    1.33 +        assertExec(
    1.34 +            "Should be one", 
    1.35 +            Under_Score.class, "one__I", 
    1.36 +            Double.valueOf(1)
    1.37 +        );
    1.38 +    }
    1.39 +
    1.40 +    @Test public void onePlusOne() throws Exception {
    1.41 +        assertExec(
    1.42 +            "Should be two", 
    1.43 +            Under_Score.class, "one_1plus_1one__I", 
    1.44 +            Double.valueOf(2)
    1.45 +        );
    1.46 +    }
    1.47 +
    1.48 +    @Test public void two() throws Exception {
    1.49 +        assertExec(
    1.50 +            "Should be two", 
    1.51 +            Under_Score.class, "two__I", 
    1.52 +            Double.valueOf(2)
    1.53 +        );
    1.54 +    }
    1.55 +
    1.56 +    @Test public void staticField() throws Exception {
    1.57 +        assertExec(
    1.58 +            "Should be ten", 
    1.59 +            Under_Score.class, "staticField__I", 
    1.60 +            Double.valueOf(10)
    1.61 +        );
    1.62 +    }
    1.63 +
    1.64 +    @Test public void instance() throws Exception {
    1.65 +        assertExec(
    1.66 +            "Should be five", 
    1.67 +            Under_Score.class, "instance__I", 
    1.68 +            Double.valueOf(5)
    1.69 +        );
    1.70 +    }
    1.71 +
    1.72 +    
    1.73 +    private static TestVM code;
    1.74 +    
    1.75 +    @BeforeClass 
    1.76 +    public static void compileTheCode() throws Exception {
    1.77 +        StringBuilder sb = new StringBuilder();
    1.78 +        code = TestVM.compileClass(sb, "org/apidesign/vm4brwsr/Under_Score");
    1.79 +    }
    1.80 +    @AfterClass
    1.81 +    public static void releaseTheCode() {
    1.82 +        code = null;
    1.83 +    }
    1.84 +
    1.85 +    private void assertExec(
    1.86 +        String msg, Class<?> clazz, String method, 
    1.87 +        Object ret, Object... args
    1.88 +    ) throws Exception {
    1.89 +        code.assertExec(msg, clazz, method, ret, args);
    1.90 +    }
    1.91 +}