Package br.com.caelum.vraptor.ioc.spring.components

Examples of br.com.caelum.vraptor.ioc.spring.components.ConstructorInjection


    assertNotNull("can instantiate", component);
  }

  @Test
  public void shouldSupportConstructorInjection() {
    ConstructorInjection component = container.instanceFor(ConstructorInjection.class);
    assertNotNull("can instantiate", component);
    assertNotNull("inject dependencies", component.getDependecy());
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.ioc.spring.components.ConstructorInjection

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.