You are here

public function AutoFilterTest::testGetColumnsEmpty 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::testGetColumnsEmpty()

File

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

Class

AutoFilterTest

Code

public function testGetColumnsEmpty() {

  //	There should be no columns yet defined
  $result = $this->_testAutoFilterObject
    ->getColumns();
  $this
    ->assertInternalType('array', $result);
  $this
    ->assertEquals(0, count($result));
}