1
0
mirror of synced 2025-12-26 20:48:00 +08:00

🐛 #1161 微信支付修复EntPayRequest类的toString方法问题

This commit is contained in:
Binary Wang
2019-08-18 10:13:13 +08:00
parent d1586aec25
commit ecc407a6e9
2 changed files with 21 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
package com.github.binarywang.wxpay.bean.entpay;
import org.testng.annotations.Test;
import static org.testng.Assert.*;
/**
* .
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
* @date 2019-08-18
*/
public class EntPayRequestTest {
@Test
public void testToString() {
System.out.println(EntPayRequest.newBuilder().mchId("123").build().toString());
}
}