Package br.com.caelum.vraptor.interceptor.download

Examples of br.com.caelum.vraptor.interceptor.download.Download


  interceptor = new DownloadInterceptor(response, info, result);
  }

  @Test
  public void whenResultIsADownloadShouldUseIt() throws Exception {
    Download download = mock(Download.class);

    when(info.getResult()).thenReturn(download);

    interceptor.intercept(stack, resourceMethod, null);
View Full Code Here


    }
  }
 
  @Test
  public void shouldThrowInterceptionExceptionIfIOExceptionOccurs() throws Exception {
  Download download = mock(Download.class);
 
  when(info.getResult()).thenReturn(download);
  when(result.used()).thenReturn(false);
  doThrow(new IOException()).when(download).write(any(HttpServletResponse.class));
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.interceptor.download.Download

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.