when(input.getParts()).thenReturn(parts);
when(part.getHeaders()).thenReturn(mm);
when(part.getBody(any(GenericType.class))).thenReturn(archive);
when(importer.loadExport(eq(owner), any(File.class), any(ConflictOverrides.class)))
.thenThrow(new ImporterException("Bad import"));
try {
thisOwnerResource.importManifest(owner.getKey(), new String [] {}, input);
}
catch (IseException ise) {