diff options
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaFLY.java')
| -rw-r--r-- | test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaFLY.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaFLY.java b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaFLY.java new file mode 100644 index 0000000..623034e --- /dev/null +++ b/test/uk/ac/ox/cs/pagoda/global_tests/TestPagodaFLY.java | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.global_tests; | ||
| 2 | |||
| 3 | import org.testng.annotations.Test; | ||
| 4 | import uk.ac.ox.cs.pagoda.Pagoda; | ||
| 5 | import uk.ac.ox.cs.pagoda.util.TestUtil; | ||
| 6 | |||
| 7 | public class TestPagodaFLY { | ||
| 8 | |||
| 9 | public static final String ANSWER_PATH = "~/TestPagodaFLY.json"; | ||
| 10 | |||
| 11 | @Test | ||
| 12 | public void just_execute() { | ||
| 13 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 14 | Pagoda pagoda = Pagoda.builder() | ||
| 15 | .ontology(TestUtil.combinePaths(ontoDir, "fly/fly_anatomy_XP_with_GJ_FC_individuals.owl")) | ||
| 16 | .query(TestUtil.combinePaths(ontoDir, "fly/queries/fly.sparql")) | ||
| 17 | // .answer(ANSWER_PATH) | ||
| 18 | .classify(true) | ||
| 19 | .hermit(true) | ||
| 20 | .build(); | ||
| 21 | pagoda.run(); | ||
| 22 | } | ||
| 23 | |||
| 24 | @Test | ||
| 25 | public void test() { | ||
| 26 | // TODO implement | ||
| 27 | } | ||
| 28 | } | ||
