/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/View/Blade/BladeForStatementsTest.php
32 строки
786 B
Lucas Michot
[5.5] Let PHPUnit setup Blade tests. (#19675)
19 июн 2017, 16:25
19 июн 2017, 16:25
59ee769
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\View\Blade; class BladeForStatementsTest extends AbstractBladeTestCase { public function testForStatementsAreCompiled() { $string = '@for ($i = 0; $i < 10; $i++) test @endfor'; $expected = '<?php for($i = 0; $i < 10; $i++): ?> test <?php endfor; ?>'; $this->assertEquals($expected, $this->compiler->compileString($string)); } public function testNestedForStatementsAreCompiled() { $string = '@for ($i = 0; $i < 10; $i++) @for ($j = 0; $j < 20; $j++) test @endfor @endfor'; $expected = '<?php for($i = 0; $i < 10; $i++): ?> <?php for($j = 0; $j < 20; $j++): ?> test <?php endfor; ?> <?php endfor; ?>'; $this->assertEquals($expected, $this->compiler->compileString($string)); } }