rt/vm/src/test/java/org/apidesign/vm4brwsr/StaticUseSubTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 27 Feb 2013 14:38:16 +0100
changeset 775 a13e33fd5c2e
child 777 8a1f840a286b
permissions -rw-r--r--
Need to use method accessors to access static fields
     1 /**
     2  * Back 2 Browser Bytecode Translator Copyright (C) 2012 Jaroslav Tulach
     3  * <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify it under
     6  * the terms of the GNU General Public License as published by the Free Software
     7  * Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
    12  * details.
    13  *
    14  * You should have received a copy of the GNU General Public License along with
    15  * this program. Look for COPYING file in the top folder. If not, see
    16  * http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.vm4brwsr;
    19 
    20 import org.testng.annotations.BeforeClass;
    21 import org.testng.annotations.Test;
    22 
    23 /**
    24  *
    25  * @author Jaroslav Tulach <jtulach@netbeans.org>
    26  */
    27 public class StaticUseSubTest {
    28     private static TestVM code;
    29 
    30     @BeforeClass
    31     public static void compileTheCode() throws Exception {
    32         StringBuilder sb = new StringBuilder();
    33         code = TestVM.compileClass(sb, "org/apidesign/vm4brwsr/StaticUseSub");
    34     }
    35     
    36     @Test public void getInheritedStaticField() throws Exception {
    37         code.assertExec(
    38             "Obtains non-null", StaticUseSub.class, 
    39             "getNonNull__Ljava_lang_String_2",
    40             "java.lang.Object"
    41         );
    42     }
    43 }