Package tests.jfun.models

Examples of tests.jfun.models.CompositeBean


  }
  private static TestSuite suite(){
    return new TestSuite(ComponentTestCase.class);
  }
  private static void verify(DefaultContainer cc){
    final CompositeBean cb =
      (CompositeBean)cc.getInstanceOfType(CompositeBean.class);
    assertEquals("qian", cb.getName());
    assertEquals(2, cb.getBeans().length);
    assertEquals(true, ((tests.jfun.models.MyBean)cb.getBean()).is1());
  }
View Full Code Here

TOP

Related Classes of tests.jfun.models.CompositeBean

Copyright © 2018 www.massapicom. 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.