1 | <?php |
||
11 | class ErrorTwigTest extends AbstractTwigTest |
||
12 | { |
||
13 | protected static $TEMP_PATH = '/../../tmp/error/'; |
||
14 | |||
15 | // |
||
16 | // PhpUnit |
||
17 | // |
||
18 | |||
19 | /** |
||
20 | * @return array |
||
21 | */ |
||
22 | public function formatProvider() |
||
26 | |||
27 | // |
||
28 | // Tests |
||
29 | // |
||
30 | |||
31 | /** |
||
32 | * @param string $format |
||
33 | * |
||
34 | * @throws \PHPExcel_Exception |
||
35 | * |
||
36 | * @dataProvider formatProvider |
||
37 | */ |
||
38 | public function testBlockError($format) |
||
51 | |||
52 | /** |
||
53 | * @param string $format |
||
54 | * |
||
55 | * @throws \PHPExcel_Exception |
||
56 | * |
||
57 | * @dataProvider formatProvider |
||
58 | */ |
||
59 | public function testDocumentError($format) |
||
72 | |||
73 | /** |
||
74 | * @param string $format |
||
75 | * |
||
76 | * @throws \PHPExcel_Exception |
||
77 | * |
||
78 | * @dataProvider formatProvider |
||
79 | */ |
||
80 | public function testMacroError($format) |
||
93 | } |
||
94 |