File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
hutool-http/src/test/java/cn/hutool/http Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments