1 | <?php |
||
10 | class StrictColumnWidthsParserTest extends TestCase |
||
11 | { |
||
12 | /** |
||
13 | * This tests the basic getColumns behavior. |
||
14 | * |
||
15 | * @test |
||
16 | * @covers ::__construct |
||
17 | * @covers ::getColumns |
||
18 | */ |
||
19 | public function getColumnsFromSampleLine() |
||
24 | |||
25 | /** |
||
26 | * This tests the getColumns behavior for an empty row. |
||
27 | * |
||
28 | * @test |
||
29 | * @covers ::__construct |
||
30 | * @covers ::getColumns |
||
31 | */ |
||
32 | public function getColumnsFromEmptyLine() |
||
37 | |||
38 | /** |
||
39 | * This tests the getColumns behavior for a row with fewer columns than in the columnWidths spec. |
||
40 | * |
||
41 | * @test |
||
42 | * @covers ::__construct |
||
43 | * @covers ::getColumns |
||
44 | */ |
||
45 | public function getColumnsFromShortLine() |
||
50 | } |
||
51 |