コード例 #1
0
 /**
  * Test set/get Office 2003 compatibility
  */
 public function testSetHasOffice2003Compatibility()
 {
     $object = new PowerPoint2007(new PhpPowerpoint());
     $this->assertFalse($object->hasOffice2003Compatibility());
     $object->setOffice2003Compatibility(true);
     $this->assertTrue($object->hasOffice2003Compatibility());
 }