Package cn.bran

Source Code of cn.bran.InnerClassMetaTest

package cn.bran;

import org.junit.Test;

import cn.bran.japid.classmeta.InnerClassMeta;



public class InnerClassMetaTest {
  @Test
  public void testPrintout() {
    InnerClassMeta icm = new InnerClassMeta(
        "my.Display",
        2,
        "String title, String hi",
        "p (\"The real title is: \"); pln(title);"
        );
    System.out.println(icm.toString());
  }
}
TOP

Related Classes of cn.bran.InnerClassMetaTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.