| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function testLocaleDependency(): void |
||
| 40 | { |
||
| 41 | $app = $this->makeApp(); |
||
| 42 | $d = $app->get(LocaleDependency::class); |
||
| 43 | |||
| 44 | $d = $d->__debugInfo(); |
||
| 45 | |||
| 46 | $this->assertSame('en', $d['value']); |
||
| 47 | |||
| 48 | $this->assertTrue(in_array('en', $d['variants'])); |
||
| 49 | $this->assertTrue(in_array('ru', $d['variants'])); |
||
| 50 | } |
||
| 52 |