Пример #1
0
 /**
  * Test get/set underline
  */
 public function testSetGetUnderline()
 {
     $object = new Font();
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Style\\Font', $object->setUnderline());
     $this->assertEquals(FONT::UNDERLINE_NONE, $object->getUnderline());
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Style\\Font', $object->setUnderline(''));
     $this->assertEquals(FONT::UNDERLINE_NONE, $object->getUnderline());
     $this->assertInstanceOf('PhpOffice\\PhpPowerpoint\\Style\\Font', $object->setUnderline(FONT::UNDERLINE_DASH));
     $this->assertEquals(FONT::UNDERLINE_DASH, $object->getUnderline());
 }