| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function test_client() { |
||
| 40 | $client = new Client(); |
||
| 41 | $client->set_website_key( getenv( 'BUCKAROO_WEBSITE_KEY' ) ); |
||
| 42 | $client->set_secret_key( getenv( 'BUCKAROO_SECRET_KEY' ) ); |
||
| 43 | |||
| 44 | $this->factory->fake( 'https://testcheckout.buckaroo.nl/nvp/?op=TransactionRequestSpecification', __DIR__ . '/../http/testcheckout-buckaroo-nl-nvp-op-TransactionRequestSpecification-ok.http' ); |
||
| 45 | |||
| 46 | $issuers = $client->get_issuers(); |
||
| 47 | |||
| 48 | $this->assertInternalType( 'array', $issuers ); |
||
| 49 | } |
||
| 51 |