VIVO-873 Simplify and document the DocumentModifier interface.
allUris parameter on modifyDocument() was not documented and not used. There is no logical reason for modifyDocument to throw a SkipIndividualException.
This commit is contained in:
parent
3877ba1c3e
commit
3ccb10dc83
8 changed files with 32 additions and 33 deletions
|
@ -29,8 +29,6 @@ import edu.cornell.mannlib.vitro.webapp.rdfservice.RDFServiceFactory;
|
|||
import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.RDFServiceFactorySingle;
|
||||
import edu.cornell.mannlib.vitro.webapp.rdfservice.impl.jena.model.RDFServiceModel;
|
||||
import edu.cornell.mannlib.vitro.webapp.search.VitroSearchTermNames;
|
||||
import edu.cornell.mannlib.vitro.webapp.search.documentBuilding.SkipIndividualException;
|
||||
import edu.cornell.mannlib.vitro.webapp.search.documentBuilding.ThumbnailImageURL;
|
||||
|
||||
public class ThumbnailImageURLTest extends AbstractTestClass{
|
||||
RDFServiceFactory testRDF;
|
||||
|
@ -62,11 +60,7 @@ public class ThumbnailImageURLTest extends AbstractTestClass{
|
|||
ind.setURI(personsURI);
|
||||
|
||||
//make sure that the person is in the RDF
|
||||
try {
|
||||
testMe.modifyDocument(ind, doc, null);
|
||||
} catch (SkipIndividualException e) {
|
||||
Assert.fail("Test individual was skipped by classes that build the search document: " + e.getMessage());
|
||||
}
|
||||
testMe.modifyDocument(ind, doc);
|
||||
|
||||
//make sure that a search document field got created for the thumbnail image
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue