@Test
public void testPath() throws Exception {
LDPathClient client = new LDPathClient(config);
try {
List<RDFNode> result = client.evaluatePath("http://localhost:8080/Marmotta/resource/anna_schmidt", "foaf:knows / foaf:name");
Assert.assertThat(result, CoreMatchers.<RDFNode> hasItem(hasProperty("content", equalTo("Sepp Huber"))));
} catch (NotFoundException e) {
Assert.fail(e.getMessage());
}
}