}
@Test
public void testIsIdenticalNegative() throws Exception {
final String storageUrl = "hdfs://localhost:41020";
final Location location1 = new Location();
location1.setPath("/foo/baz");
location1.setType(LocationType.DATA);
List<Location> locations1 = new ArrayList<Location>();
locations1.add(location1);
FileSystemStorage storage1 = new FileSystemStorage(storageUrl, locations1);
final Location location2 = new Location();
location2.setPath("/foo/bar");
location2.setType(LocationType.DATA);
List<Location> locations2 = new ArrayList<Location>();
locations2.add(location2);
FileSystemStorage storage2 = new FileSystemStorage(storageUrl, locations2);
Assert.assertFalse(storage1.isIdentical(storage2));