Examples of AttachmentService


Examples of org.kuali.rice.krad.service.AttachmentService

   * @throws java.lang.Exception
   */
  @Before
  public void setUp() throws Exception {
    controller = new DownloadController();
    AttachmentService attSvc = mock(AttachmentService.class);
    controller.setAttachmentService(attSvc);
    fileContent = "God is good";
    attInputStream = new ByteArrayInputStream(fileContent.getBytes());
    when(attSvc.retrieveAttachmentContents(any(Attachment.class))).thenReturn(attInputStream);
    response = mock(HttpServletResponse.class);
    servletOutputStream = mock(ServletOutputStream.class);
    when(response.getOutputStream()).thenReturn(servletOutputStream);
    // setup attachment
    att = mock(Attachment.class);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.