diff options
| author | RncLsn <rnc.lsn@gmail.com> | 2015-05-15 17:32:22 +0100 |
|---|---|---|
| committer | RncLsn <rnc.lsn@gmail.com> | 2015-05-15 17:32:22 +0100 |
| commit | 1b6a128137e5d7a6ff75566869232fc054afabef (patch) | |
| tree | 3def49c3c9c1e2ebebc49b82d9eb562b6d097cad /test/uk/ac/ox/cs/pagoda/global_tests/PagodaELU.java | |
| parent | bd995407098d1b0c79c17a28b0b23a2c24a493c6 (diff) | |
| download | ACQuA-1b6a128137e5d7a6ff75566869232fc054afabef.tar.gz ACQuA-1b6a128137e5d7a6ff75566869232fc054afabef.zip | |
Testing and fixing. Executed successfully on UOBM{1,2,3,4,5,6,7,8}.
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/global_tests/PagodaELU.java')
| -rw-r--r-- | test/uk/ac/ox/cs/pagoda/global_tests/PagodaELU.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/global_tests/PagodaELU.java b/test/uk/ac/ox/cs/pagoda/global_tests/PagodaELU.java new file mode 100644 index 0000000..da059f9 --- /dev/null +++ b/test/uk/ac/ox/cs/pagoda/global_tests/PagodaELU.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 PagodaELU { | ||
| 8 | |||
| 9 | @Test void test() { | ||
| 10 | int number = 1; | ||
| 11 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 12 | PagodaTester.main( | ||
| 13 | TestUtil.combinePaths(ontoDir, "uobm/univ-bench-dl.owl"), | ||
| 14 | TestUtil.combinePaths(ontoDir, "uobm/data/uobm" + number + ".ttl"), | ||
| 15 | TestUtil.combinePaths(ontoDir, "uobm/queries/standard.sparql") | ||
| 16 | ); | ||
| 17 | } | ||
| 18 | |||
| 19 | |||
| 20 | } | ||
