mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
13
hutool-http/src/test/java/cn/hutool/http/client/ClientEngineFactoryTest.java
Executable file
13
hutool-http/src/test/java/cn/hutool/http/client/ClientEngineFactoryTest.java
Executable file
@@ -0,0 +1,13 @@
|
||||
package cn.hutool.http.client;
|
||||
|
||||
import cn.hutool.http.client.engine.ClientEngineFactory;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
public class ClientEngineFactoryTest {
|
||||
@Test
|
||||
public void getTest() {
|
||||
final ClientEngine clientEngineFactory = ClientEngineFactory.get();
|
||||
Assert.assertNotNull(clientEngineFactory);
|
||||
}
|
||||
}
|
@@ -1,8 +1,8 @@
|
||||
package cn.hutool.http.client;
|
||||
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.http.meta.Method;
|
||||
import cn.hutool.http.client.engine.httpclient4.HttpClient4Engine;
|
||||
import cn.hutool.http.meta.Method;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
|
1
hutool-http/src/test/resources/simplelogger.properties
Executable file
1
hutool-http/src/test/resources/simplelogger.properties
Executable file
@@ -0,0 +1 @@
|
||||
org.slf4j.simpleLogger.defaultLogLevel=debug
|
Reference in New Issue
Block a user