blob: b073a267d9a015a6d173731c908c87c249f1a1e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package uk.ac.ox.cs.pagoda.global_tests;
import org.testng.annotations.Test;
import java.io.IOException;
public class LightEvaluation {
@Test
public void evaluation() throws IOException {
new TestPagodaUOBM().test(1);
new TestPagodaLUBM().test(100);
new TestPagodaFLY().test();
new TestPagodaDBPedia().test();
new TestPagodaNPD().testNPDwithoutDataType();
}
}
|