| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function testIndex() |
||
| 13 | { |
||
| 14 | $client = $this->getClientWithMockedGet('timezones-index.json'); |
||
| 15 | |||
| 16 | $client = new TimezoneClient($this->getConfig(), $client); |
||
| 17 | $list = $client->index(); |
||
| 18 | |||
| 19 | foreach ($list as $continent) { |
||
| 20 | $this->assertInstanceOf(Timezone::class, $continent); |
||
| 21 | } |
||
| 44 |