3 class errorTest
extends PHPUnit_Framework_TestCase
6 * @dataProvider tplProvider
9 function testInvalidForloop($tpl)
11 $this->setExpectedException('Haanga_CompilerException');
15 public function tplProvider()
18 foreach (glob("err_templates/*.tpl") as $err_file) {
19 $datas[] = array($err_file);