浏览代码

提交ip查询的测试用例

Leonhardt92 6 年之前
父节点
当前提交
9e8d80a699
共有 1 个文件被更改,包括 25 次插入27 次删除
  1. 25 27
      src/test/java/com/ruoyi/common/utils/AddressUtilsTest.java

+ 25 - 27
src/test/java/com/ruoyi/common/utils/AddressUtilsTest.java

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