aboutsummaryrefslogtreecommitdiff
path: root/test/uk/ac/ox/cs/pagoda/global_tests/LightEvaluation.java
blob: 7fc5da86f20e4aada200f3ac343b1b19d3f16b85 (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.global_tests;

import org.testng.annotations.Test;

import java.io.IOException;

@Deprecated
public class LightEvaluation {

	@Test
	public void evaluation() throws IOException {
		new TestPagodaUOBM().answersCorrectness(1);
		new TestPagodaLUBM().answersCorrecntess(100);
		new TestPagodaFLY().test();
		new TestPagodaDBPedia().test();
		new TestPagodaNPD().testNPDwithoutDataType();
	}
}