WIP: Versuch den StaticTest zu reparieren...
[percentcodec] / examples / servlet / src / test / java / de / halbekunst / cachecontrol / examples / jsp / ServletTest.java
1 package de.halbekunst.cachecontrol.examples.jsp;
2
3 import de.halbekunst.juplo.test.HttpTestCase;
4 import org.junit.Test;
5 import org.slf4j.Logger;
6 import org.slf4j.LoggerFactory;
7
8 /**
9  *
10  * @author kai
11  */
12 public class ServletTest extends HttpTestCase {
13
14   private static final Logger log = LoggerFactory.getLogger(ServletTest.class);
15
16
17   public ServletTest() {
18     super("src/main/webapp/WEB-INF/web.xml");
19   }
20
21
22   @Test
23   public void test() throws Exception {
24 //    WebResponse response = executeRequest("http://localhost:8080/simple-page.jsp");
25 //    log.info("Title:\t\t{}", response.getTitle());
26 //    log.debug("Text:\t\t{}", response.getText());
27   }
28 }