Package com.findwise.hydra

Examples of com.findwise.hydra.DocumentFileRepository


    // Mock a DocumentFile that has the proper input stream.
    DocumentFile<Local> file = mock(DocumentFile.class);
    when(file.getStream()).thenReturn(inputStream);

    // Mock the fileRepository and make it return the proper file name and our mocked DocumentFile
    DocumentFileRepository fileRepository = mock(DocumentFileRepository.class);
    when(fileRepository.getFileNames(any(DocumentID.class))).thenReturn(Arrays.asList(fileName));
    when(fileRepository.getFile(anyString(), any(DocumentID.class))).thenReturn(file);

    return fileRepository;
  }
View Full Code Here

TOP

Related Classes of com.findwise.hydra.DocumentFileRepository

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.