Skip to content

Commit af4fa47

Browse files
authored
Merge pull request #65 from hhxsv5/master
Skip v1 api tests
2 parents 55f8160 + a5a185b commit af4fa47

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

tests/DepositTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ public function testGetDeposits(Deposit $api)
8888
*/
8989
public function testGetV1Deposits(Deposit $api)
9090
{
91+
$this->markTestSkipped();
92+
return;
9193
$data = $api->getV1Deposits(['currency' => 'ETH'], ['currentPage' => 1, 'pageSize' => 10]);
9294
$this->assertPagination($data);
9395
foreach ($data['items'] as $item) {

tests/OrderTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ public function testGetList(Order $api)
109109
*/
110110
public function testGetV1List(Order $api)
111111
{
112+
$this->markTestSkipped();
113+
return;
112114
$data = $api->getV1List(['symbol' => 'BTC-USDT'], ['currentPage' => 1, 'pageSize' => 10]);
113115
$this->assertPagination($data);
114116
foreach ($data['items'] as $item) {

tests/WithdrawalTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ public function testGetList(Withdrawal $api)
9797
*/
9898
public function testGetV1List(Withdrawal $api)
9999
{
100+
$this->markTestSkipped();
101+
return;
100102
$params = [
101103
'currency' => 'BTC',
102104
];

0 commit comments

Comments
 (0)