class RowCellIteratorTest in Loft Data Grids 7.2
Same name and namespace in other branches
Hierarchy
- class \RowCellIteratorTest extends \PHPUnit_Framework_TestCase
Expanded class hierarchy of RowCellIteratorTest
File
- vendor/
phpoffice/ phpexcel/ unitTests/ Classes/ PHPExcel/ Worksheet/ RowCellIteratorTest.php, line 3
View source
class RowCellIteratorTest extends PHPUnit_Framework_TestCase {
public $mockWorksheet;
public $mockRowCell;
public function setUp() {
if (!defined('PHPEXCEL_ROOT')) {
define('PHPEXCEL_ROOT', APPLICATION_PATH . '/');
}
require_once PHPEXCEL_ROOT . 'PHPExcel/Autoloader.php';
$this->mockCell = $this
->getMockBuilder('PHPExcel_Cell')
->disableOriginalConstructor()
->getMock();
$this->mockWorksheet = $this
->getMockBuilder('PHPExcel_Worksheet')
->disableOriginalConstructor()
->getMock();
$this->mockWorksheet
->expects($this
->any())
->method('getHighestColumn')
->will($this
->returnValue('E'));
$this->mockWorksheet
->expects($this
->any())
->method('getCellByColumnAndRow')
->will($this
->returnValue($this->mockCell));
}
public function testIteratorFullRange() {
$iterator = new PHPExcel_Worksheet_RowCellIterator($this->mockWorksheet);
$RowCellIndexResult = 'A';
$this
->assertEquals($RowCellIndexResult, $iterator
->key());
foreach ($iterator as $key => $RowCell) {
$this
->assertEquals($RowCellIndexResult++, $key);
$this
->assertInstanceOf('PHPExcel_Cell', $RowCell);
}
}
public function testIteratorStartEndRange() {
$iterator = new PHPExcel_Worksheet_RowCellIterator($this->mockWorksheet, 2, 'B', 'D');
$RowCellIndexResult = 'B';
$this
->assertEquals($RowCellIndexResult, $iterator
->key());
foreach ($iterator as $key => $RowCell) {
$this
->assertEquals($RowCellIndexResult++, $key);
$this
->assertInstanceOf('PHPExcel_Cell', $RowCell);
}
}
public function testIteratorSeekAndPrev() {
$ranges = range('A', 'E');
$iterator = new PHPExcel_Worksheet_RowCellIterator($this->mockWorksheet, 2, 'B', 'D');
$RowCellIndexResult = 'D';
$iterator
->seek('D');
$this
->assertEquals($RowCellIndexResult, $iterator
->key());
for ($i = 1; $i < array_search($RowCellIndexResult, $ranges); $i++) {
$iterator
->prev();
$expectedResult = $ranges[array_search($RowCellIndexResult, $ranges) - $i];
$this
->assertEquals($expectedResult, $iterator
->key());
}
}
/**
* @expectedException PHPExcel_Exception
*/
public function testSeekOutOfRange() {
$iterator = new PHPExcel_Worksheet_RowCellIterator($this->mockWorksheet, 2, 'B', 'D');
$iterator
->seek(1);
}
/**
* @expectedException PHPExcel_Exception
*/
public function testPrevOutOfRange() {
$iterator = new PHPExcel_Worksheet_RowCellIterator($this->mockWorksheet, 2, 'B', 'D');
$iterator
->prev();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RowCellIteratorTest:: |
public | property | ||
RowCellIteratorTest:: |
public | property | ||
RowCellIteratorTest:: |
public | function | ||
RowCellIteratorTest:: |
public | function | ||
RowCellIteratorTest:: |
public | function | ||
RowCellIteratorTest:: |
public | function | ||
RowCellIteratorTest:: |
public | function | @expectedException PHPExcel_Exception | |
RowCellIteratorTest:: |
public | function | @expectedException PHPExcel_Exception |