getFontSize() public method

Gets currently configured font size.
public getFontSize ( ) : String
return String with font size.
コード例 #1
0
ファイル: ThemeTest.php プロジェクト: pboutin44/maintest
 /**
  * Test for getFontSize
  *
  * @return void
  */
 public function testGetFontSize()
 {
     $this->assertEquals($this->object->getFontSize(), '82%');
     $GLOBALS['PMA_Config']->set('fontsize', '12px');
     $this->assertEquals($this->object->getFontSize(), '12px');
 }