Package br.com.caelum.vraptor.core

Examples of br.com.caelum.vraptor.core.StaticContentHandler


  @Test
  public void shouldDeferToContainerIfStaticFile() throws IOException, ServletException {
  VRaptor vraptor = new VRaptor();
  HttpServletRequest request = mock(HttpServletRequest.class);
  HttpServletResponse response = mock(HttpServletResponse.class);
  StaticContentHandler handler = mock(StaticContentHandler.class);
  FilterChain chain = mock(FilterChain.class);
 
  when(handler.requestingStaticFile(request)).thenReturn(true);
 
  vraptor.init(new DoNothingProvider(handler));
  vraptor.doFilter(request, response, chain);
 
  verify(handler, times(1)).deferProcessingToContainer(chain, request, response);
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.core.StaticContentHandler

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.