Package jodd.bean

Examples of jodd.bean.BeanCopyTest$Moo


  @Test
  public void testCount() {
    PetiteContainer pc = new PetiteContainer();
    pc.registerPetiteBean(Moo.class, null, null, null, false);
    pc.registerPetiteBean(Joo.class, null, null, null, false);
    Moo moo = pc.getBean(Moo.class);
    assertNotNull(moo.joo);
    assertNull(moo.jooNo);

    BeanDefinition bd = pc.lookupBeanDefinition("moo");
    assertEquals(1, bd.properties.length);
View Full Code Here

TOP

Related Classes of jodd.bean.BeanCopyTest$Moo

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.