blob: 29abc870dea2ead13f9c44ee0738e40af4bcf213 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package uk.ac.ox.cs.pagoda.test_units;
import org.testng.annotations.Test;
import uk.ac.ox.cs.pagoda.util.TestUtil;
import java.io.IOException;
import java.nio.file.Paths;
public class PagodaLUBM {
private void testN(int number ) throws IOException {
String ontoDir = TestUtil.getConfig().getProperty("ontoDir");
TestGlobalCorrectness.test(Paths.get(ontoDir, "lubm/univ-bench.owl"),
Paths.get(ontoDir, "lubm/data/lubm" + number + ".ttl"),
Paths.get(ontoDir, "lubm/queries/test.sparql"),
Paths.get(ontoDir, "lubm/lubm" + number + ".ans"));
}
@Test
public void test1() throws IOException {
testN(1);
}
}
|