Skip to content

Commit 9f777b3

Browse files
committed
add test
1 parent d179823 commit 9f777b3

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
* Copyright (c) 2023 looly(loolly@aliyun.com)
3+
* Hutool is licensed under Mulan PSL v2.
4+
* You can use this software according to the terms and conditions of the Mulan PSL v2.
5+
* You may obtain a copy of Mulan PSL v2 at:
6+
* http://license.coscl.org.cn/MulanPSL2
7+
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
8+
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
9+
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
10+
* See the Mulan PSL v2 for more details.
11+
*/
12+
13+
package cn.hutool.http;
14+
15+
import cn.hutool.core.lang.Console;
16+
import org.junit.Ignore;
17+
import org.junit.Test;
18+
19+
public class Issue3197Test {
20+
@Test
21+
@Ignore
22+
public void getTest() {
23+
final String s = HttpUtil.get("http://localhost:8080/index");
24+
Console.log(s);
25+
}
26+
}

0 commit comments

Comments
 (0)