2015-04-26 12:00:58 +00:00
|
|
|
<?php
|
|
|
|
|
2016-08-31 17:18:12 +00:00
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
|
2016-03-22 14:35:50 +00:00
|
|
|
|
2016-08-31 17:18:12 +00:00
|
|
|
use PhpOffice\PhpSpreadsheet\Worksheet\Column;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Worksheet\ColumnCellIterator;
|
2017-10-29 08:39:42 +00:00
|
|
|
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
|
2017-11-08 15:48:01 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-14 04:08:43 +00:00
|
|
|
|
2017-11-08 15:48:01 +00:00
|
|
|
class ColumnTest extends TestCase
|
2015-04-26 12:00:58 +00:00
|
|
|
{
|
|
|
|
public $mockWorksheet;
|
2018-01-28 06:59:38 +00:00
|
|
|
|
2015-04-26 12:00:58 +00:00
|
|
|
public $mockColumn;
|
|
|
|
|
2020-04-27 10:28:36 +00:00
|
|
|
protected function setUp(): void
|
2015-05-17 13:00:02 +00:00
|
|
|
{
|
2016-08-14 04:08:43 +00:00
|
|
|
$this->mockWorksheet = $this->getMockBuilder(Worksheet::class)
|
2015-04-26 12:00:58 +00:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2020-05-18 04:49:57 +00:00
|
|
|
$this->mockWorksheet->expects(self::any())
|
2017-01-05 03:26:20 +00:00
|
|
|
->method('getHighestRow')
|
2020-05-18 04:49:57 +00:00
|
|
|
->willReturn(5);
|
2015-04-26 12:00:58 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testInstantiateColumnDefault(): void
|
2015-05-17 13:00:02 +00:00
|
|
|
{
|
2016-08-14 04:08:43 +00:00
|
|
|
$column = new Column($this->mockWorksheet);
|
2017-09-20 05:55:42 +00:00
|
|
|
self::assertInstanceOf(Column::class, $column);
|
2015-04-26 12:00:58 +00:00
|
|
|
$columnIndex = $column->getColumnIndex();
|
2017-09-20 05:55:42 +00:00
|
|
|
self::assertEquals('A', $columnIndex);
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2015-04-26 12:00:58 +00:00
|
|
|
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testInstantiateColumnSpecified(): void
|
2015-05-17 13:00:02 +00:00
|
|
|
{
|
2016-08-14 04:08:43 +00:00
|
|
|
$column = new Column($this->mockWorksheet, 'E');
|
2017-09-20 05:55:42 +00:00
|
|
|
self::assertInstanceOf(Column::class, $column);
|
2015-04-26 12:00:58 +00:00
|
|
|
$columnIndex = $column->getColumnIndex();
|
2017-09-20 05:55:42 +00:00
|
|
|
self::assertEquals('E', $columnIndex);
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2015-04-26 12:00:58 +00:00
|
|
|
|
2020-05-18 04:49:57 +00:00
|
|
|
public function testGetCellIterator(): void
|
2015-05-17 13:00:02 +00:00
|
|
|
{
|
2016-08-14 04:08:43 +00:00
|
|
|
$column = new Column($this->mockWorksheet);
|
2015-04-26 12:00:58 +00:00
|
|
|
$cellIterator = $column->getCellIterator();
|
2017-09-20 05:55:42 +00:00
|
|
|
self::assertInstanceOf(ColumnCellIterator::class, $cellIterator);
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2015-04-26 12:00:58 +00:00
|
|
|
}
|