generateRandomFile(fs, src, FILESIZE);
String destination = "/testFastCopyMultipleDestination" + hardlink;
FastCopy fastCopy = new FastCopy(conf);
List<FastFileCopyRequest> requests = new ArrayList<FastFileCopyRequest>();
for (int i = 0; i < COPIES; i++) {
requests.add(new FastFileCopyRequest(src, destination + i, fs, fs));
}
NameNode namenode = cluster.getNameNode();
try {
fastCopy.copy(requests);
for (FastFileCopyRequest r : requests) {