blob: 3551b9bae25f2b1da32adb60fb0207ac2198164b (
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().answersCorrectness(100);
// new TestPagodaFLY().answersCorrectness();
new TestPagodaDBPedia().answersCorrectness();
new TestPagodaNPD().testNPDwithoutDataType();
}
}
|