Package br.com.caelum.vraptor.interceptor

Examples of br.com.caelum.vraptor.interceptor.InstanceContainer


  }

  @Test
  public void shouldUseContainerForNewComponent() throws InterceptionException, IOException {
    final DogController myDog = new DogController();
    InstanceContainer container = new InstanceContainer(myDog);
    InstantiateObserver observer = new InstantiateObserver(container);
    when(event.getController()).thenReturn(new DefaultBeanClass(DogController.class));
    observer.instantiate(event);
    assertEquals(myDog,observer.getControllerInstance().getController());
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.interceptor.InstanceContainer

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.