Exemple #1
0
 public function testCheckTransactions()
 {
     $api = new \CashWay\API(get_conf());
     $res = $api->checkTransactionsForOrders(array());
     $this->assertEquals('GET', $res['method']);
     $this->assertEquals('/1/shops/me/transactions?', $res['request']);
     $this->assertJsonStringEqualsJsonString(json_encode(null), $res['body']);
 }