You are here

public function FontTest::testGetAutoSizeMethod in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Shared/FontTest.php \FontTest::testGetAutoSizeMethod()

File

vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Shared/FontTest.php, line 17

Class

FontTest

Code

public function testGetAutoSizeMethod() {
  $expectedResult = PHPExcel_Shared_Font::AUTOSIZE_METHOD_APPROX;
  $result = call_user_func(array(
    'PHPExcel_Shared_Font',
    'getAutoSizeMethod',
  ));
  $this
    ->assertEquals($expectedResult, $result);
}