// Now move file, and sync
clientA.moveFile("A-file1", "A-file-moved1");
clientA.up();
DownOperationResult downOperationResult = clientB.down();
assertEquals("No multichunks should have been downloaded.", 0, downOperationResult.getDownloadedMultiChunks().size());
assertTrue("Moved files should exist.", clientB.getLocalFile("A-file-moved1").exists());
assertFileListEquals(clientA.getLocalFilesExcludeLockedAndNoRead(), clientB.getLocalFilesExcludeLockedAndNoRead());
assertSqlDatabaseEquals(clientA.getDatabaseFile(), clientB.getDatabaseFile());