Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ColumnDimensionTest extends TestCase |
||
9 | { |
||
10 | public function testInstantiateColumnDimensionDefault() |
||
17 | } |
||
18 | |||
19 | public function testGetAndSetColumnIndex() |
||
20 | { |
||
21 | $expected = 'B'; |
||
22 | $columnDimension = new ColumnDimension(); |
||
23 | $columnDimension->setColumnIndex($expected); |
||
24 | $result = $columnDimension->getColumnIndex(); |
||
25 | self::assertSame($expected, $result); |
||
26 | } |
||
27 | |||
28 | public function testGetAndSetWidth() |
||
35 | } |
||
36 | |||
37 | public function testGetAndSetAutoSize() |
||
46 |