1 | <?php |
||
11 | class CsvTwigTest extends AbstractTwigTest |
||
12 | { |
||
13 | protected static $TEMP_PATH = '/../../tmp/csv/'; |
||
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 testBasic($format) |
||
51 | |||
52 | /** |
||
53 | * @param string $format |
||
54 | * |
||
55 | * @throws \PHPExcel_Exception |
||
56 | * |
||
57 | * @dataProvider formatProvider |
||
58 | */ |
||
59 | public function testDocumentTemplate($format) |
||
72 | } |
||
73 |