This commit is contained in:
Looly
2022-10-26 12:57:01 +08:00
parent 36e560842d
commit d2e66a1ca2
7 changed files with 76 additions and 14 deletions

View 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);
}
}

View File

@@ -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;

View File

@@ -0,0 +1 @@
org.slf4j.simpleLogger.defaultLogLevel=debug