Package br.com.caelum.vraptor.ioc.fixture

Examples of br.com.caelum.vraptor.ioc.fixture.CustomComponentWithLifecycleInTheClasspath


   
 
 
  @Test
  public void shoudCallPredestroyExactlyOneTimeForComponentsScannedFromTheClasspath() {
    CustomComponentWithLifecycleInTheClasspath component = getFromContainer(CustomComponentWithLifecycleInTheClasspath.class);
    assertThat(component.getCallsToPreDestroy(), is(equalTo(0)));
    provider.stop();
    assertThat(component.getCallsToPreDestroy(), is(equalTo(1)));

    resetProvider();
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.ioc.fixture.CustomComponentWithLifecycleInTheClasspath

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.