@Test
 public void testRemove() throws Exception {
   File shape = super.getAnySpatialResource();
   FileDriver d = new ShapefileDriver();
   FileDriverRegister fdr = new FileDriverRegister();
   fdr.addFile(shape, d);
   fdr.removeFile(shape);
   assertFalse(fdr.contains(shape));
 }