You are here

public function AutoFilterTest::testToString in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Worksheet/AutoFilterTest.php \AutoFilterTest::testToString()

File

vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Worksheet/AutoFilterTest.php, line 34

Class

AutoFilterTest

Code

public function testToString() {
  $expectedResult = $this->_testInitialRange;

  //	magic __toString should return the active autofilter range
  $result = $this->_testAutoFilterObject;
  $this
    ->assertEquals($expectedResult, $result);
}