blob: c3651969c7af00adf182d6f71099531ea4754d00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package uk.ac.ox.cs.pagoda.test_units;
import org.junit.Test;
import uk.ac.ox.cs.pagoda.tester.PagodaTester;
import uk.ac.ox.cs.pagoda.util.TestUtil;
public class PagodaRLU {
@Test
public void testRL() {
int number = 1;
String ontoDir = TestUtil.getConfig().getProperty("ontoDir");
PagodaTester.main(
TestUtil.combinePaths(ontoDir, "uobm/univ-bench-dl.owl"),
TestUtil.combinePaths(ontoDir, "uobm/data/uobm" + number + ".ttl"),
TestUtil.combinePaths(ontoDir, "uobm/queries/standard.sparql")
);
}
}
|