Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function testRenderViewWithAnotherLanguage(): void |
||
30 | { |
||
31 | $app = $this->makeApp(); |
||
32 | |||
33 | /** @var ViewsInterface $views */ |
||
34 | $views = $app->get(ViewsInterface::class); |
||
35 | |||
36 | $this->assertSame('Hello, English!', $views->render('home')); |
||
37 | |||
38 | $app->get(TranslatorInterface::class)->setLocale('ru'); |
||
39 | $this->assertSame('Hello, Мир!', $views->render('home')); |
||
40 | |||
41 | $app->get(TranslatorInterface::class)->setLocale('en'); |
||
42 | $this->assertSame('Hello, English!', $views->render('home')); |
||
43 | } |
||
45 |