| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function testIndex() |
||
| 11 | { |
||
| 12 | $client = $this->getClientWithMockedGet('countries-index.json'); |
||
| 13 | |||
| 14 | $client = new CountriesClient($this->getConfig(), $client); |
||
| 15 | $list = $client->index(); |
||
| 16 | |||
| 17 | foreach ($list as $continent) { |
||
| 18 | $this->assertInstanceOf(Country::class, $continent); |
||
| 19 | } |
||
| 32 |