System.out.println(vocabularyUri+ ": Available versions: " +versions);
// retrieve each of the available versions:
// note, no need to pass the "version" parameter because the URI is already in versioned form.
for ( String vocabularyVersion : versions ) {
RetrieveResult retrievalResult = RetrieveOntology.retrieveOntology(vocabularyVersion, null, "owl");
assertEquals(HttpStatus.SC_OK, retrievalResult.status);
assertNotNull(retrievalResult.body);
assertTrue(retrievalResult.body.contains("<rdf:RDF"));
}
}