Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
35 | public function testBlockError($format) |
||
36 | { |
||
37 | $this->setExpectedException( |
||
38 | '\Twig_Error_Syntax', |
||
39 | 'Block tags do not work together with Twig tags provided by TwigExcelBundle. Please use \'xlsblock\' instead in "blockError.twig".' |
||
40 | ); |
||
41 | $this->getDocument('blockError', $format); |
||
42 | } |
||
43 | |||
74 |