-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 #1161 微信支付修复EntPayRequest类的toString方法问题
- Loading branch information
1 parent
d2fc782
commit 5420e57
Showing
2 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
weixin-java-pay/src/test/java/com/github/binarywang/wxpay/bean/entpay/EntPayRequestTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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()); | ||
} | ||
} |