You are here

public function ColumnCellIteratorTest::testPrevOutOfRange in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Worksheet/ColumnCellIteratorTest.php \ColumnCellIteratorTest::testPrevOutOfRange()

@expectedException PHPExcel_Exception

File

vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Worksheet/ColumnCellIteratorTest.php, line 81

Class

ColumnCellIteratorTest

Code

public function testPrevOutOfRange() {
  $iterator = new PHPExcel_Worksheet_ColumnCellIterator($this->mockWorksheet, 'A', 2, 4);
  $iterator
    ->prev();
}