public function FontTest::testGetAutoSizeMethod in Loft Data Grids 6.2
Same name and namespace in other branches
- 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
Code
public function testGetAutoSizeMethod() {
$expectedResult = PHPExcel_Shared_Font::AUTOSIZE_METHOD_APPROX;
$result = call_user_func(array(
'PHPExcel_Shared_Font',
'getAutoSizeMethod',
));
$this
->assertEquals($expectedResult, $result);
}