From e617855cbfbd8839fd49a53114c7fd010fc934a4 Mon Sep 17 00:00:00 2001 From: RncLsn Date: Thu, 10 Sep 2015 18:51:27 +0100 Subject: Small changes --- test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaLUBM.java | 12 ++++++++++++ test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) (limited to 'test/uk/ac/ox/cs') diff --git a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaLUBM.java b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaLUBM.java index c893f96..2d95e5f 100644 --- a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaLUBM.java +++ b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaLUBM.java @@ -77,4 +77,16 @@ public class TestPagodaLUBM { public void justExecute_sygenia_1_allBlanks() throws IOException { justExecute_sygenia_allBlanks(1); } + + @Test(groups = {"existential"}) + public void justExecute_feier() throws IOException { + String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); + + Pagoda.builder() + .ontology(Paths.get(ontoDir, "lubm/univ-bench.owl")) + .data(Paths.get(ontoDir, "lubm/data/lubm1.ttl")) + .query(Paths.get(ontoDir, "lubm/queries/queries_from_feier-et-al.sparql")) + .build() + .run(); + } } 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 9263602..8a8a596 100644 --- a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java +++ b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaReactome.java @@ -44,8 +44,8 @@ public class TestPagodaReactome { Pagoda.builder() .ontology(Paths.get(ontoDir, "reactome/biopax-level3-processed.owl")) .data(Paths.get(ontoDir, "reactome/data/sample_10.ttl")) -// .query(Paths.get(ontoDir, "reactome/existential_queries.sparql")) - .query(Paths.get(ontoDir, "reactome/Queries_by_Feier-et-al.sparql")) + .query(Paths.get(ontoDir, "reactome/existential_queries.sparql")) +// .query(Paths.get(ontoDir, "reactome/Queries_by_Feier-et-al.sparql")) .build() .run(); } -- cgit v1.2.3