// custom resource object (should return null)
String path2 = mAC3.getResourceFilePath("TestResourceObject");
Assert.assertNull(path2);
// parameterized resources (should fail)
AnnotatorContextException ex = null;
try {
mAC3.getResourceFilePath("TestFileLanguageResource");
} catch (AnnotatorContextException e) {
ex = e;
}