mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
add test
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package org.dromara.hutool.core.net.ssl;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import javax.net.ssl.SSLContext;
|
||||
|
||||
public class SSLContextUtilTest {
|
||||
@Test
|
||||
void createTrustAnySSLContextTest() {
|
||||
final SSLContext trustAnySSLContext = SSLContextUtil.createTrustAnySSLContext();
|
||||
Assertions.assertNotNull(trustAnySSLContext);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user