diff options
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/global_tests/PagodaFLY.java')
| -rw-r--r-- | test/uk/ac/ox/cs/pagoda/global_tests/PagodaFLY.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/global_tests/PagodaFLY.java b/test/uk/ac/ox/cs/pagoda/global_tests/PagodaFLY.java new file mode 100644 index 0000000..d558e0f --- /dev/null +++ b/test/uk/ac/ox/cs/pagoda/global_tests/PagodaFLY.java | |||
| @@ -0,0 +1,25 @@ | |||
| 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 PagodaFLY { | ||
| 8 | |||
| 9 | @Test | ||
| 10 | public void test() { | ||
| 11 | String ontoDir = TestUtil.getConfig().getProperty("ontoDir"); | ||
| 12 | PagodaTester.main( | ||
| 13 | TestUtil.combinePaths(ontoDir, "fly/fly_anatomy_XP_with_GJ_FC_individuals.owl"), | ||
| 14 | TestUtil.combinePaths(ontoDir, "fly/queries/fly_pellet.sparql") | ||
| 15 | ); | ||
| 16 | |||
| 17 | // Statistics stat = new Statistics("output/log4j.log"); | ||
| 18 | // String diff = stat.diff("results-backup/benchmark/fly.out"); | ||
| 19 | // AllTests.copy("output/log4j.log", "results-backup/current/fly.out"); | ||
| 20 | // if (!diff.isEmpty()) | ||
| 21 | // fail(diff); | ||
| 22 | } | ||
| 23 | |||
| 24 | |||
| 25 | } | ||
