Package org.apache.openejb.config.rules

Examples of org.apache.openejb.config.rules.CheckInvalidCallbacksTest$Sun


    PetiteContainer pc = new PetiteContainer();

    pc.registerPetiteBean(Solar.class, null, null, null, false);
    pc.registerPetiteBean(Sun.class, null, null, null, false);

    Sun sun = pc.getBean(Sun.class);

    assertEquals("Sun{Earth}", sun.toString());
  }
View Full Code Here


    PetiteContainer pc = new PetiteContainer();

    pc.registerPetiteBean(Solar3.class, null, null, null, false)// still needs to be a bean
    pc.registerPetiteBean(Sun.class, null, null, null, false);

    Sun sun = pc.getBean(Sun.class);

    assertEquals("Sun{Earth}", sun.toString());
  }
View Full Code Here

TOP

Related Classes of org.apache.openejb.config.rules.CheckInvalidCallbacksTest$Sun

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.