test '; $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 = ' test '; $this->assertEquals($expected, $this->compiler->compileString($string)); } }