Exemple #1
0
 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());
 }