Fix HtmlUnitAndJUnitTest

This commit is contained in:
pivovarit 2016-12-04 10:40:38 +01:00
parent ec56e7f86c
commit 19e7ab40e4
1 changed files with 6 additions and 3 deletions

View File

@ -1,13 +1,16 @@
package com.baeldung.htmlunit;
import org.junit.Assert;
import org.junit.Test;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlPage;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class HtmlUnitAndJUnitTest {
private WebClient webClient;
@Before
public void init() throws Exception {
webClient = new WebClient();