示例#1
0
文件: TestCommon.php 项目: rexmac/zf2
 public function testFontSizeWithoutEffectWithGdInternalFont()
 {
     if (!extension_loaded('gd')) {
         $this->markTestSkipped('GD extension is required to run this test');
     }
     $this->_object->setFont(1);
     $this->_object->setFontSize(22);
     $this->assertSame(8, $this->_object->getFontSize());
 }