*/
@Test
public void testArticle() throws Exception {
String uriArticle = "http://en.wikipedia.org/wiki/Marmot";
ClientResponse respArticle = ldclient.retrieveResource(uriArticle);
RepositoryConnection conArticle = respArticle.getTriples().getConnection();
conArticle.begin();
Assert.assertTrue(conArticle.size() > 0);
// run a SPARQL test to see if the returned data is correct
InputStream sparql = this.getClass().getResourceAsStream("wikipedia-marmot.sparql");