Package com.github.hakko.musiccabinet.dao

Examples of com.github.hakko.musiccabinet.dao.LibraryPresenceDao


  private File file2b = getFile(dir1, "f2b"); // changed version of file2
 
  @Test
  public void delegatesHandlingOfAddedAndDeletedResources() {
    LibraryPresenceDao presenceDao = mock(LibraryPresenceDao.class);
    when(presenceDao.getFiles(dir1)).thenReturn(set(file1, file2, file3));
    when(presenceDao.getSubdirectories(dir1)).thenReturn(set(dir2));
    presenceService.setLibraryPresenceDao(presenceDao);

    file2b.setSize(file2.getSize() + 1);
   
    PollableChannel presenceChannel = presenceService.libraryPresenceChannel;
View Full Code Here

TOP

Related Classes of com.github.hakko.musiccabinet.dao.LibraryPresenceDao

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.