Browse Source

remove something

master
Binary Wang 8 years ago
parent
commit
db6e91a360
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      weixin-java-pay/src/test/java/com/github/binarywang/wxpay/service/impl/WxMpPayServiceImplTest.java

+ 5
- 5
weixin-java-pay/src/test/java/com/github/binarywang/wxpay/service/impl/WxMpPayServiceImplTest.java View File

@@ -60,7 +60,7 @@ public class WxMpPayServiceImplTest {
/** /**
* Test method for {@link WxPayService#refund(WxPayRefundRequest)} . * Test method for {@link WxPayService#refund(WxPayRefundRequest)} .
*/ */
@Test//(dependsOnMethods = {"setSSLKey"})
@Test
public void testRefund() throws Exception { public void testRefund() throws Exception {
WxPayRefundResult result = this.wxService.refund( WxPayRefundResult result = this.wxService.refund(
WxPayRefundRequest.newBuilder() WxPayRefundRequest.newBuilder()
@@ -99,7 +99,7 @@ public class WxMpPayServiceImplTest {
/** /**
* Test method for {@link WxPayService#sendRedpack(WxPaySendRedpackRequest)} . * Test method for {@link WxPayService#sendRedpack(WxPaySendRedpackRequest)} .
*/ */
@Test//(dependsOnMethods = {"setSSLKey"})
@Test
public void testSendRedpack() throws Exception { public void testSendRedpack() throws Exception {
WxPaySendRedpackRequest request = new WxPaySendRedpackRequest(); WxPaySendRedpackRequest request = new WxPaySendRedpackRequest();
request.setActName("abc"); request.setActName("abc");
@@ -113,7 +113,7 @@ public class WxMpPayServiceImplTest {
/** /**
* Test method for {@link WxPayService#queryRedpack(java.lang.String)}. * Test method for {@link WxPayService#queryRedpack(java.lang.String)}.
*/ */
@Test//(dependsOnMethods = {"setSSLKey"})
@Test
public void testQueryRedpack() throws Exception { public void testQueryRedpack() throws Exception {
WxPayRedpackQueryResult redpackResult = this.wxService.queryRedpack("aaaa"); WxPayRedpackQueryResult redpackResult = this.wxService.queryRedpack("aaaa");
this.logger.info(redpackResult.toString()); this.logger.info(redpackResult.toString());
@@ -157,7 +157,7 @@ public class WxMpPayServiceImplTest {
/** /**
* Test method for {@link WxPayService#entPay(WxEntPayRequest)}. * Test method for {@link WxPayService#entPay(WxEntPayRequest)}.
*/ */
@Test//(dependsOnMethods = {"setSSLKey"})
@Test
public void testEntPay() throws WxErrorException { public void testEntPay() throws WxErrorException {
WxEntPayRequest request = new WxEntPayRequest(); WxEntPayRequest request = new WxEntPayRequest();
this.logger.info(this.wxService.entPay(request).toString()); this.logger.info(this.wxService.entPay(request).toString());
@@ -166,7 +166,7 @@ public class WxMpPayServiceImplTest {
/** /**
* Test method for {@link WxPayService#queryEntPay(java.lang.String)}. * Test method for {@link WxPayService#queryEntPay(java.lang.String)}.
*/ */
@Test//(dependsOnMethods = {"setSSLKey"})
@Test
public void testQueryEntPay() throws WxErrorException { public void testQueryEntPay() throws WxErrorException {
this.logger.info(this.wxService.queryEntPay("11212121").toString()); this.logger.info(this.wxService.queryEntPay("11212121").toString());
} }


Loading…
Cancel
Save