rt/vm/src/test/java/org/apidesign/vm4brwsr/HtmlAnnotationsTest.java
branchcanvas
changeset 1289 5a0768a5e095
parent 1270 6b553ee385df
parent 1288 8bf8753226bd
child 1290 3fc3e7c4fb5c
     1.1 --- a/rt/vm/src/test/java/org/apidesign/vm4brwsr/HtmlAnnotationsTest.java	Sun Sep 08 11:42:01 2013 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,91 +0,0 @@
     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 static org.testng.Assert.assertNotNull;
    1.24 -import org.testng.annotations.AfterClass;
    1.25 -import org.testng.annotations.BeforeClass;
    1.26 -import org.testng.annotations.Test;
    1.27 -
    1.28 -/** Verify cooperation with net.java.html.js annotations.
    1.29 - *
    1.30 - * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.31 - */
    1.32 -public class HtmlAnnotationsTest {
    1.33 -    @Test public void fourtyTwo() throws Exception {
    1.34 -        assertExec("Annotation used", HtmlAnnotations.class, 
    1.35 -            "fourtyTwo__I",
    1.36 -            Double.valueOf(42)
    1.37 -        );
    1.38 -    }
    1.39 -    
    1.40 -    @Test public void externalMul() throws Exception {
    1.41 -        assertExec("mul function is loaded", HtmlAnnotations.class, 
    1.42 -            "useExternalMul__III",
    1.43 -            Double.valueOf(42),
    1.44 -            7, 6
    1.45 -        );
    1.46 -    }
    1.47 -
    1.48 -    @Test public void callRunnableFromJS() throws Exception {
    1.49 -        assertExec("runnable called", HtmlAnnotations.class, 
    1.50 -            "callback__I",
    1.51 -            Double.valueOf(1)
    1.52 -        );
    1.53 -    }
    1.54 -
    1.55 -    @Test public void callStaticMethodFromJS() throws Exception {
    1.56 -        assertExec("runnable called", HtmlAnnotations.class, 
    1.57 -            "staticCallback__I",
    1.58 -            Double.valueOf(1)
    1.59 -        );
    1.60 -    }
    1.61 -
    1.62 -    @Test public void callbackWithFourParamsAndReturnType() throws Exception {
    1.63 -        Object instance = code.execCode("Get an HtmlAnnotations instance", HtmlAnnotations.class, "create__Ljava_lang_Object_2", null);
    1.64 -        assertNotNull(instance, "Instance created");
    1.65 -        assertExec("runnable called", HtmlAnnotations.class, 
    1.66 -            "first__JLjava_lang_Object_2JJ",
    1.67 -            Double.valueOf(42), instance, 42, 31
    1.68 -        );
    1.69 -    }
    1.70 -
    1.71 -    @Test public void callbackWithObjectParamsAndReturnType() throws Exception {
    1.72 -        Object instance = code.execCode("Get an HtmlAnnotations instance", HtmlAnnotations.class, "create__Ljava_lang_Object_2", null);
    1.73 -        assertNotNull(instance, "Instance created");
    1.74 -        assertExec("called back and forth", HtmlAnnotations.class, 
    1.75 -            "onError__Ljava_lang_Double_2Ljava_lang_Object_2Ljava_lang_Double_2",
    1.76 -            Double.valueOf(42), instance, 42
    1.77 -        );
    1.78 -    }
    1.79 -    
    1.80 -    private static TestVM code;
    1.81 -    
    1.82 -    @BeforeClass 
    1.83 -    public void compileTheCode() throws Exception {
    1.84 -        code = TestVM.compileClass("org/apidesign/vm4brwsr/HtmlAnnotations");
    1.85 -    }
    1.86 -    @AfterClass
    1.87 -    public static void releaseTheCode() {
    1.88 -        code = null;
    1.89 -    }
    1.90 -    private static void assertExec(String msg, Class clazz, String method, Object expRes, Object... args) throws Exception {
    1.91 -        code.assertExec(msg, clazz, method, expRes, args);
    1.92 -    }
    1.93 -    
    1.94 -}