提交ip查询的测试用例

master
Leonhardt92 7 years ago committed by Limy
parent 5b0a2241ca
commit a9de182d1c

@ -5,35 +5,33 @@ import org.junit.Before;
import org.junit.Test; import org.junit.Test;
/** /**
* AddressUtils Tester. * AddressUtils Tester.
* *
* @author Leonhardt * @author Leonhardt
* @since 07/22/2018 * @version 1.0
* @version 1.0 * @since 07/22/2018
*/ */
public class AddressUtilsTest { public class AddressUtilsTest {
@Before @Before
public void before() throws Exception { public void before() throws Exception {
} }
@After @After
public void after() throws Exception { public void after() throws Exception {
} }
/** /**
* * Method: getRealAddressByIP(String ip)
* Method: getRealAddressByIP(String ip) * <p>
* */
* $method.annotation @Test
*/ public void testGetRealAddressByIP() throws Exception {
@Test
public void testGetRealAddressByIP() throws Exception {
//TODO: Test goes here... //TODO: Test goes here...
String ipAddress = AddressUtils.getRealAddressByIP("121.8.250.154"); String ipAddress = AddressUtils.getRealAddressByIP("121.8.250.1");
System.out.println(ipAddress); System.out.println(ipAddress);
} }
} }

Loading…
Cancel
Save