You are here

public function AutoFilterTest::testSetParent in Loft Data Grids 7.2

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

File

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

Class

AutoFilterTest

Code

public function testSetParent() {

  //	Setters return the instance to implement the fluent interface
  $result = $this->_testAutoFilterObject
    ->setParent($this->_mockWorksheetObject);
  $this
    ->assertInstanceOf('PHPExcel_Worksheet_AutoFilter', $result);
}