1 | <?php |
||
8 | class ErrorTwigTest extends BaseTwigTest |
||
9 | { |
||
10 | protected static $TEMP_PATH = '/../../tmp/error/'; |
||
11 | |||
12 | // |
||
13 | // PhpUnit |
||
14 | // |
||
15 | |||
16 | /** |
||
17 | * @return array |
||
18 | */ |
||
19 | public function formatProvider() |
||
23 | |||
24 | // |
||
25 | // Tests |
||
26 | // |
||
27 | |||
28 | /** |
||
29 | * @param string $format |
||
30 | * |
||
31 | * @throws \Exception |
||
32 | * |
||
33 | * @dataProvider formatProvider |
||
34 | */ |
||
35 | public function testCellIndexError($format) |
||
42 | |||
43 | /** |
||
44 | * @param string $format |
||
45 | * |
||
46 | * @throws \Exception |
||
47 | * |
||
48 | * @dataProvider formatProvider |
||
49 | */ |
||
50 | public function testDocumentError($format) |
||
57 | |||
58 | /** |
||
59 | * @param string $format |
||
60 | * |
||
61 | * @throws \Exception |
||
62 | * |
||
63 | * @dataProvider formatProvider |
||
64 | */ |
||
65 | public function testDocumentErrorTextAfter($format) |
||
72 | |||
73 | /** |
||
74 | * @param string $format |
||
75 | * |
||
76 | * @throws \Exception |
||
77 | * |
||
78 | * @dataProvider formatProvider |
||
79 | */ |
||
80 | public function testDocumentErrorTextBefore($format) |
||
87 | |||
88 | /** |
||
89 | * @param string $format |
||
90 | * |
||
91 | * @throws \Exception |
||
92 | * |
||
93 | * @dataProvider formatProvider |
||
94 | */ |
||
95 | public function testRowIndexError($format) |
||
102 | |||
103 | /** |
||
104 | * @param string $format |
||
105 | * |
||
106 | * @throws \Exception |
||
107 | * |
||
108 | * @dataProvider formatProvider |
||
109 | */ |
||
110 | public function testSheetError($format) |
||
117 | } |
||
118 |