diff options
| author | yzhou <yujiao.zhou@gmail.com> | 2015-04-21 10:34:27 +0100 |
|---|---|---|
| committer | yzhou <yujiao.zhou@gmail.com> | 2015-04-21 10:34:27 +0100 |
| commit | 9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8 (patch) | |
| tree | 47511c0fb89dccff0db4b5990522e04f294d795b /test/uk/ac/ox/cs/pagoda/junit/PagodaFLY.java | |
| parent | b1ac207612ee8b045244253fb94b866104bc34f2 (diff) | |
| download | ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.tar.gz ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.zip | |
initial version
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/junit/PagodaFLY.java')
| -rw-r--r-- | test/uk/ac/ox/cs/pagoda/junit/PagodaFLY.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/junit/PagodaFLY.java b/test/uk/ac/ox/cs/pagoda/junit/PagodaFLY.java new file mode 100644 index 0000000..4631837 --- /dev/null +++ b/test/uk/ac/ox/cs/pagoda/junit/PagodaFLY.java | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.junit; | ||
| 2 | |||
| 3 | import org.junit.Test; | ||
| 4 | |||
| 5 | import uk.ac.ox.cs.pagoda.tester.PagodaTester; | ||
| 6 | |||
| 7 | public class PagodaFLY { | ||
| 8 | |||
| 9 | @Test | ||
| 10 | public void test() { | ||
| 11 | PagodaTester.main( | ||
| 12 | PagodaTester.onto_dir + "fly/fly_anatomy_XP_with_GJ_FC_individuals.owl", | ||
| 13 | PagodaTester.onto_dir + "fly/queries/fly_pellet.sparql" | ||
| 14 | ); | ||
| 15 | |||
| 16 | // Statistics stat = new Statistics("output/log4j.log"); | ||
| 17 | // String diff = stat.diff("results-backup/benchmark/fly.out"); | ||
| 18 | // AllTests.copy("output/log4j.log", "results-backup/current/fly.out"); | ||
| 19 | // if (!diff.isEmpty()) | ||
| 20 | // fail(diff); | ||
| 21 | } | ||
| 22 | |||
| 23 | |||
| 24 | } | ||
