1
0
mirror of synced 2025-12-27 05:19:07 +08:00

🆕 #2586 【微信支付】支付证书支持base64编码配置

This commit is contained in:
猫九大大
2022-04-25 10:13:00 +08:00
committed by GitHub
parent 220e38d6c4
commit 1fc0da066b
2 changed files with 30 additions and 4 deletions

View File

@@ -37,4 +37,11 @@ public class WxPayConfigTest {
public void testHashCode() {
payConfig.hashCode();
}
@Test
public void testInitSSLContext_base64() throws Exception {
payConfig.setMchId("123");
payConfig.setKeyString("MIIKmgIBAzCCCmQGCS...");
payConfig.initSSLContext();
}
}