diff options
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/global_tests/PagodaRLU.java')
| -rw-r--r-- | test/uk/ac/ox/cs/pagoda/global_tests/PagodaRLU.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/global_tests/PagodaRLU.java b/test/uk/ac/ox/cs/pagoda/global_tests/PagodaRLU.java new file mode 100644 index 0000000..88e0835 --- /dev/null +++ b/test/uk/ac/ox/cs/pagoda/global_tests/PagodaRLU.java | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.global_tests; | ||
| 2 | |||
| 3 | import org.junit.Test; | ||
| 4 | import uk.ac.ox.cs.pagoda.tester.PagodaTester; | ||
| 5 | import uk.ac.ox.cs.pagoda.util.TestUtil; | ||
| 6 | |||
| 7 | public class PagodaRLU { | ||
| 8 | |||
| 9 | @Test | ||
| 10 | public void testRL() { | ||
| 11 | int number = 1; | ||
| 12 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 13 | PagodaTester.main( | ||
| 14 | TestUtil.combinePaths(ontoDir, "uobm/univ-bench-dl.owl"), | ||
| 15 | TestUtil.combinePaths(ontoDir, "uobm/data/uobm" + number + ".ttl"), | ||
| 16 | TestUtil.combinePaths(ontoDir, "uobm/queries/standard.sparql") | ||
| 17 | ); | ||
| 18 | } | ||
| 19 | |||
| 20 | } | ||
