use of org.apache.jena.tdb.sys.DatasetControlMRSW in project jena by apache.
the class TestPrefixMappingTDB method persistent2.
// Persistent.
@Test
public void persistent2() {
String dir = ConfigTest.getTestingDir();
FileOps.clearDirectory(dir);
DatasetPrefixesTDB prefixes = createTesting(Location.create(dir), new DatasetControlMRSW());
PrefixMapping pmap1 = prefixes.getPrefixMapping();
pmap1.setNsPrefix("x", "http://foo/");
prefixes.close();
prefixes = createTesting(Location.create(dir), new DatasetControlMRSW());
assertEquals("http://foo/", pmap1.getNsPrefixURI("x"));
prefixes.close();
}
use of org.apache.jena.tdb.sys.DatasetControlMRSW in project jena by apache.
the class TestPrefixMappingTDB method persistent1.
// Persistent.
@Test
public void persistent1() {
String dir = ConfigTest.getTestingDir();
FileOps.clearDirectory(dir);
DatasetPrefixesTDB prefixes = createTesting(Location.create(dir), new DatasetControlMRSW());
PrefixMapping pmap1 = prefixes.getPrefixMapping();
String x = pmap1.getNsPrefixURI("x");
assertNull(x);
prefixes.close();
}
use of org.apache.jena.tdb.sys.DatasetControlMRSW in project jena by apache.
the class TestPrefixMappingTDB1 method persistent1.
// Persistent.
@Test
public void persistent1() {
String dir = ConfigTest.getTestingDir();
FileOps.clearDirectory(dir);
DatasetPrefixesTDB prefixes = createTesting(Location.create(dir), new DatasetControlMRSW());
PrefixMapping pmap1 = getPrefixMapping();
String x = pmap1.getNsPrefixURI("x");
assertNull(x);
prefixes.close();
}
use of org.apache.jena.tdb.sys.DatasetControlMRSW in project jena by apache.
the class TestPrefixMappingTDB1 method persistent2.
// Persistent.
@Test
public void persistent2() {
String dir = ConfigTest.getTestingDir();
FileOps.clearDirectory(dir);
DatasetPrefixesTDB prefixes = createTesting(Location.create(dir), new DatasetControlMRSW());
PrefixMapping pmap1 = getPrefixMapping();
pmap1.setNsPrefix("x", "http://foo/");
prefixes.close();
prefixes = createTesting(Location.create(dir), new DatasetControlMRSW());
PrefixMapping pmap2 = getPrefixMapping();
String uri = pmap2.getNsPrefixURI("x");
assertEquals("http://foo/", uri);
prefixes.close();
}
Aggregations