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