aboutsummaryrefslogtreecommitdiff
path: root/test/uk/ac/ox/cs/pagoda/test_units/PagodaFLY.java
blob: 2fe07f07d64bd6924ee948bb492c85f61b5b40d0 (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.junit.Test;

import uk.ac.ox.cs.pagoda.tester.PagodaTester;

public class PagodaFLY {

	@Test
	public void test() {
		PagodaTester.main(
				PagodaTester.onto_dir + "fly/fly_anatomy_XP_with_GJ_FC_individuals.owl",
				PagodaTester.onto_dir + "fly/queries/fly_pellet.sparql" 
		); 
		
//		Statistics stat = new Statistics("output/log4j.log");
//		String diff = stat.diff("results-backup/benchmark/fly.out"); 
//		AllTests.copy("output/log4j.log", "results-backup/current/fly.out"); 
//		if (!diff.isEmpty())
//			fail(diff);
	}
	

}