aboutsummaryrefslogtreecommitdiff
path: root/test/uk/ac/ox/cs/pagoda/junit/PagodaELU.java
blob: d999a6edae4fde6542ccb9804b695eec198f068f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package uk.ac.ox.cs.pagoda.junit;

import org.junit.Test;
import uk.ac.ox.cs.pagoda.tester.PagodaTester;

public class PagodaELU {

	@Test void test() {
		int number = 1; 
		PagodaTester.main(
				PagodaTester.onto_dir + "uobm/univ-bench-dl.owl",
				PagodaTester.onto_dir + "uobm/data/uobm" + number + ".ttl",
				PagodaTester.onto_dir + "uobm/queries/standard.sparql" 
		); 
	}
	
	
}