diff options
| author | RncLsn <rnc.lsn@gmail.com> | 2015-05-06 18:11:08 +0100 |
|---|---|---|
| committer | Ronca <alessandro.a.ronca@gmail.com> | 2015-05-06 18:20:58 +0100 |
| commit | f2909a748a300f94cf6067fc84416e408d3e6de8 (patch) | |
| tree | 02962a710fe27ea1c7a2704a356b7f663a42cb52 /test/uk/ac/ox/cs/pagoda/junit/LightEvaluation.java | |
| parent | 58e6d87cb604702e7b307bad73c4fd42a694c3ec (diff) | |
| download | ACQuA-f2909a748a300f94cf6067fc84416e408d3e6de8.tar.gz ACQuA-f2909a748a300f94cf6067fc84416e408d3e6de8.zip | |
Switch from JUnit to TestNG.
Plus minor fixes.
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/junit/LightEvaluation.java')
| -rw-r--r-- | test/uk/ac/ox/cs/pagoda/junit/LightEvaluation.java | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/junit/LightEvaluation.java b/test/uk/ac/ox/cs/pagoda/junit/LightEvaluation.java deleted file mode 100644 index 1ddca15..0000000 --- a/test/uk/ac/ox/cs/pagoda/junit/LightEvaluation.java +++ /dev/null | |||
| @@ -1,59 +0,0 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.junit; | ||
| 2 | |||
| 3 | import org.junit.Test; | ||
| 4 | import uk.ac.ox.cs.pagoda.tester.PagodaTester; | ||
| 5 | |||
| 6 | public class LightEvaluation { | ||
| 7 | |||
| 8 | @Test | ||
| 9 | public void uobm1() { | ||
| 10 | int number = 1; | ||
| 11 | PagodaTester.main( | ||
| 12 | PagodaTester.onto_dir + "uobm/univ-bench-dl.owl", | ||
| 13 | PagodaTester.onto_dir + "uobm/data/uobm" + number + ".ttl", | ||
| 14 | PagodaTester.onto_dir + "uobm/queries/standard.sparql" | ||
| 15 | ); | ||
| 16 | AllTests.copy("log4j.log", "output/jair/uobm1.out"); | ||
| 17 | } | ||
| 18 | |||
| 19 | @Test | ||
| 20 | public void lubm100() { | ||
| 21 | int number = 100; | ||
| 22 | PagodaTester.main( | ||
| 23 | PagodaTester.onto_dir + "lubm/univ-bench.owl", | ||
| 24 | PagodaTester.onto_dir + "lubm/data/lubm" + number + ".ttl", | ||
| 25 | PagodaTester.onto_dir + "lubm/queries/test.sparql" | ||
| 26 | ); | ||
| 27 | AllTests.copy("log4j.log", "results-backup/current/lubm100.out"); | ||
| 28 | } | ||
| 29 | |||
| 30 | @Test | ||
| 31 | public void fly() { | ||
| 32 | PagodaTester.main( | ||
| 33 | PagodaTester.onto_dir + "fly/fly_anatomy_XP_with_GJ_FC_individuals.owl", | ||
| 34 | PagodaTester.onto_dir + "fly/queries/fly.sparql" | ||
| 35 | ); | ||
| 36 | AllTests.copy("log4j.log", "results-backup/current/fly.out"); | ||
| 37 | } | ||
| 38 | |||
| 39 | @Test | ||
| 40 | public void dbpedia() { | ||
| 41 | PagodaTester.main( | ||
| 42 | PagodaTester.onto_dir + "dbpedia/integratedOntology-all-in-one-minus-datatype.owl", | ||
| 43 | PagodaTester.onto_dir + "dbpedia/data/dbpedia-minus-datatype-new.ttl", | ||
| 44 | PagodaTester.onto_dir + "dbpedia/atomic.sparql" | ||
| 45 | ); | ||
| 46 | AllTests.copy("log4j.log", "results-backup/current/dbpedia.out"); | ||
| 47 | } | ||
| 48 | |||
| 49 | @Test | ||
| 50 | public void npdWithoutDataType() { | ||
| 51 | PagodaTester.main( | ||
| 52 | PagodaTester.onto_dir + "npd/npd-all-minus-datatype.owl", | ||
| 53 | PagodaTester.onto_dir + "npd/data/npd-data-dump-minus-datatype-new.ttl", | ||
| 54 | PagodaTester.onto_dir + "npd/queries/atomic.sparql" | ||
| 55 | ); | ||
| 56 | AllTests.copy("log4j.log", "results-backup/current/npd_minus.out"); | ||
| 57 | } | ||
| 58 | |||
| 59 | } | ||
