@Test
public void testGetNamespaces() throws Exception {
SailConnection sc = sail.getConnection();
try {
sc.begin();
CloseableIteration<? extends Namespace, SailException> namespaces;
int before = 0, during = 0, after = 0;
// just iterate through all namespaces
namespaces = sc.getNamespaces();
while (namespaces.hasNext()) {