diff options
| author | Ronca <alessandro.a.ronca@gmail.com> | 2015-05-06 18:11:08 +0100 |
|---|---|---|
| committer | Ronca <alessandro.a.ronca@gmail.com> | 2015-05-06 18:11:08 +0100 |
| commit | fbbbfbeb79097e5ce8f9ff2682d2c21368971654 (patch) | |
| tree | 02962a710fe27ea1c7a2704a356b7f663a42cb52 /test/uk/ac/ox/cs/pagoda/test_units/PagodaELU.java | |
| parent | 58e6d87cb604702e7b307bad73c4fd42a694c3ec (diff) | |
| download | ACQuA-fbbbfbeb79097e5ce8f9ff2682d2c21368971654.tar.gz ACQuA-fbbbfbeb79097e5ce8f9ff2682d2c21368971654.zip | |
Switch from JUnit to TestNG.
Plus minor fixes.
Diffstat (limited to 'test/uk/ac/ox/cs/pagoda/test_units/PagodaELU.java')
| -rw-r--r-- | test/uk/ac/ox/cs/pagoda/test_units/PagodaELU.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/uk/ac/ox/cs/pagoda/test_units/PagodaELU.java b/test/uk/ac/ox/cs/pagoda/test_units/PagodaELU.java new file mode 100644 index 0000000..c2fa838 --- /dev/null +++ b/test/uk/ac/ox/cs/pagoda/test_units/PagodaELU.java | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.test_units; | ||
| 2 | |||
| 3 | import org.junit.Test; | ||
| 4 | import uk.ac.ox.cs.pagoda.tester.PagodaTester; | ||
| 5 | |||
| 6 | public class PagodaELU { | ||
| 7 | |||
| 8 | @Test void test() { | ||
| 9 | int number = 1; | ||
| 10 | PagodaTester.main( | ||
| 11 | PagodaTester.onto_dir + "uobm/univ-bench-dl.owl", | ||
| 12 | PagodaTester.onto_dir + "uobm/data/uobm" + number + ".ttl", | ||
| 13 | PagodaTester.onto_dir + "uobm/queries/standard.sparql" | ||
| 14 | ); | ||
| 15 | } | ||
| 16 | |||
| 17 | |||
| 18 | } | ||
