blob: 1bc282b79fb2a99fb5fab5ee8101b3aa9f3bb4ed [file] [log] [blame]
Michael Hanle56bb892016-05-25 17:34:41 +02001import de.ids_mannheim.korap.exceptions.KustvaktException;
2import de.ids_mannheim.korap.web.service.FastJerseyTest;
3import org.junit.BeforeClass;
4import org.junit.Test;
5
6/**
7 * Created by hanl on 17.04.16.
8 */
9public class PublicAPITest extends FastJerseyTest {
10
11
12 @BeforeClass
13 public static void setup () {
14 FastJerseyTest.setPackages("de.ids_mannheim.korap.web.service.light",
15 "de.ids_mannheim.korap.web.filter",
16 "de.ids_mannheim.korap.web.utils");
17 }
18
19
20 @Override
21 public void initMethod () throws KustvaktException {}
22
23
24 @Test
25 public void testContextSpanSent () {
26
27 }
28
29
30 @Test
31 public void testContextSpanPara () {
32
33 }
34
35
36 @Test
37 public void testSimpleSearch () {
38
39 }
40
41
42}