From 3a276b7c7836e56a171ab753b018913ce022ba8e Mon Sep 17 00:00:00 2001 From: RncLsn Date: Wed, 10 Jun 2015 17:12:36 +0100 Subject: Small changes. --- .../uk/ac/ox/cs/pagoda/global_tests/TestPagodaUOBM.java | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaUOBM.java') diff --git a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaUOBM.java b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaUOBM.java index bdfb818..1d9f1e6 100644 --- a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaUOBM.java +++ b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaUOBM.java @@ -79,7 +79,7 @@ public class TestPagodaUOBM { answersCorrectness_sygenia(1); } - @Test(groups = {"heavy",}, dataProvider = "UOBMNumbers") + @Test(groups = {"heavy"}, dataProvider = "UOBMNumbers") public void answersCorrectness_sygenia_allBlanks(int number) throws IOException { String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); // Path answers = Paths.get(File.createTempFile("answers", ".json").getAbsolutePath()); @@ -99,4 +99,19 @@ public class TestPagodaUOBM { // CheckAnswers.assertSameAnswers(answers, givenAnswers); } + @Test(groups = {"justExecute"}) + public void justExecute_existentialQueries() throws IOException { + String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); + + Pagoda.builder() + .ontology(Paths.get(ontoDir, "uobm/univ-bench-dl.owl")) + .data(Paths.get(ontoDir, "uobm/data/uobm1.ttl")) + .query(Paths.get(ontoDir, "uobm/queries/existential_queries.sparql")) +// .answer(answers) + .classify(true) + .hermit(true) + .skolem(false) + .build() + .run(); + } } -- cgit v1.2.3