| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function testLanguagesBestFit() |
||
| 26 | { |
||
| 27 | $client = $this->getClientWithMockedGet('localize-languages-best-fit.json'); |
||
| 28 | |||
| 29 | $client = new LocalizeLanguagesClient($this->getConfig(), $client); |
||
| 30 | $language = $client->bestFit('mobile'); |
||
| 31 | |||
| 32 | $this->assertInstanceOf(Language::class, $language); |
||
| 33 | } |
||
| 35 |