Package org.springframework.tests.sample.beans

Examples of org.springframework.tests.sample.beans.DerivedTestBean.wasInitialized()


    DerivedTestBean inherits = (DerivedTestBean) child.getBean("inheritsWithDifferentClass");
    // Name property value is overridden
    assertTrue(inherits.getName().equals("override"));
    // Age property is inherited from bean in parent factory
    assertTrue(inherits.getAge() == 1);
    assertTrue(inherits.wasInitialized());
  }

  @Test
  public void testInheritanceWithClass() throws Exception {
    DefaultListableBeanFactory parent = new DefaultListableBeanFactory();
View Full Code Here


    DerivedTestBean inherits = (DerivedTestBean) child.getBean("inheritsWithClass");
    // Name property value is overridden
    assertTrue(inherits.getName().equals("override"));
    // Age property is inherited from bean in parent factory
    assertTrue(inherits.getAge() == 1);
    assertTrue(inherits.wasInitialized());
  }

  @Test
  public void testPrototypeInheritanceFromParentFactoryPrototype() throws Exception {
    DefaultListableBeanFactory parent = new DefaultListableBeanFactory();
View Full Code Here

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.