Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function testListSupportTicketsWithParams() |
||
17 | { |
||
18 | $response = static::$xsollaClient->ListSupportTickets(array( |
||
19 | 'merchant_id' => static::$merchantId, |
||
20 | 'datetime_from' => '2015-01-01T00:00:00Z', |
||
21 | 'datetime_to' => '2015-01-02T00:00:00Z', |
||
22 | 'status' => 'solved', |
||
23 | 'type' => 'question', |
||
24 | 'offset' => 0, |
||
25 | 'limit' => 100, |
||
26 | 'sender' => 'user', |
||
27 | )); |
||
28 | static::assertInternalType('array', $response); |
||
29 | } |
||
30 | |||
36 |