LiveTest included (#891)

* Changed package name, made test as LiveTest

* Changed test name to FormServletLiveTest
This commit is contained in:
Shubham Aggarwal 2016-12-13 11:15:56 +05:30 committed by Grzegorz Piwowarek
parent c89db35aaa
commit 57b4201a9f
3 changed files with 5 additions and 4 deletions

View File

@ -2,4 +2,5 @@
.idea
classes
target
*.iml
*.iml
out

View File

@ -1,4 +1,4 @@
package com.root;
package com.baeldung.servlets;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;

View File

@ -1,4 +1,4 @@
package com.root;
package com.baeldung.servlets;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
@ -13,7 +13,7 @@ import java.util.List;
import static org.junit.Assert.assertEquals;
public class FormServletTest {
public class FormServletLiveTest {
@Test
public void whenPostRequestUsingHttpClient_thenCorrect() throws Exception {