123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace app\api\controller\tests;
- use AdaPay;
- use AdaPaySdk;
- use PHPUnit\Framework\TestCase;
- class RefundTest extends TestCase
- {
- public function testCreate()
- {
- $obj = new AdaPaySdk\Refund();
- $adaPay = new AdaPay\AdaPay();
- $adaPay->gateWayType = 'api';
- $obj_params = array(
-
- 'payment_id' => '002112019101519194610030140730621550592',
-
- 'refund_order_no' => '20190919071231283468359213',
-
- 'refund_amt' => '0.01',
-
- 'reason' => '退款描述',
-
- 'expend' => '',
-
- 'device_info' => ''
- );
- $obj->create($obj_params);
- print("创建退款对象" . $obj->isError() . '=>' . json_encode($obj->result) . "\n");
- $this->assertEquals('succeeded', $obj->result['status']);
-
- }
- public function testQuery()
- {
- $obj = new AdaPaySdk\Refund();
- $adaPay = new AdaPay\AdaPay();
- $adaPay->gateWayType = 'api';
- $obj_params = array(
- 'payment_id' => '002112019101519194610030140730621550592'
- );
- $obj->query($obj_params);
- print("查询退款对象" . $obj->isError() . '=>' . json_encode($obj->result) . "\n");
- $this->assertEquals('succeeded', $obj->result['status']);
-
- }
- }
|