use of org.apache.jena.dboe.storage.StoragePrefixes in project jena by apache.
the class AbstractTestDatasetPrefixesStorage method dsg_prefixes_04.
@Test
public void dsg_prefixes_04() {
StoragePrefixes prefixes = create();
prefixes.add(g1, pref1, "http://example.net/ns#");
prefixes.delete(g1, pref1);
String x1 = prefixes.get(g1, pref1);
assertNull(x1);
}
use of org.apache.jena.dboe.storage.StoragePrefixes in project jena by apache.
the class AbstractTestDatasetPrefixesStorage method dsg_prefixes_03.
@Test
public void dsg_prefixes_03() {
StoragePrefixes prefixes = create();
prefixes.add(g1, pref1, "http://example.net/ns#");
String x1 = prefixes.get(g2, pref1);
assertNull(x1);
}
Aggregations