实现获取仿真测试系统的验签密钥的API #206

This commit is contained in:
Binary Wang
2017-06-18 12:19:51 +08:00
parent 9eb4ccf4a4
commit 87687b3369
5 changed files with 107 additions and 15 deletions

View File

@ -264,5 +264,11 @@ public class WxPayServiceImplTest {
this.logger.info(result);
}
@Test
public void testGetSandboxSignKey() throws Exception {
final String signKey = this.payService.getSandboxSignKey();
assertNotNull(signKey);
this.logger.info(signKey);
}
}