aboutsummaryrefslogtreecommitdiff
path: root/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java
diff options
context:
space:
mode:
authorRncLsn <rnc.lsn@gmail.com>2015-09-03 15:09:35 +0100
committerRncLsn <rnc.lsn@gmail.com>2015-09-03 15:09:35 +0100
commit1c02a4bde9eddb66550341377b2bd980ff48c474 (patch)
tree6e86500be926c98fd5f285b8410fe88e8805423c /test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java
parent90cb6032058ad3fc16b895922823b5a700121b1b (diff)
downloadACQuA-1c02a4bde9eddb66550341377b2bd980ff48c474.tar.gz
ACQuA-1c02a4bde9eddb66550341377b2bd980ff48c474.zip
New test cases.
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java')
-rw-r--r--test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java
index 6ef03c5..a13b7f4 100644
--- a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java
+++ b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java
@@ -37,4 +37,16 @@ public class TestPagodaReactome {
37 .run(); 37 .run();
38 } 38 }
39 39
40 @Test(groups = {"existential"})
41 public void justExecute_existential() throws IOException {
42 String ontoDir = TestUtil.getConfig().getProperty("ontoDir");
43
44 Pagoda.builder()
45 .ontology(Paths.get(ontoDir, "reactome/biopax-level3-processed.owl"))
46 .data(Paths.get(ontoDir, "reactome/data/sample_10.ttl"))
47 .query(Paths.get(ontoDir, "reactome/existential_queries.sparql"))
48 .build()
49 .run();
50 }
51
40} 52}