conLMFVideo.export(Rio.createWriter(RDFFormat.TURTLE, System.out));
// run a SPARQL test to see if the returned data is correct
InputStream sparql = this.getClass().getResourceAsStream("vimeo-video.sparql");
BooleanQuery testLabel = conLMFVideo.prepareBooleanQuery(QueryLanguage.SPARQL, IOUtils.toString(sparql));
Assert.assertTrue("SPARQL test query failed", testLabel.evaluate());
if(log.isDebugEnabled()) {
StringWriter out = new StringWriter();
conLMFVideo.export(Rio.createWriter(RDFFormat.TURTLE, out));
log.debug("DATA:");