getName() 공개 메소드

Get the name of the slide
public getName ( ) : string
리턴 string
예제 #1
0
 public function testName()
 {
     $object = new Slide();
     $this->assertNull($object->getName());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Slide', $object->setName('AAAA'));
     $this->assertEquals('AAAA', $object->getName());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Slide', $object->setName());
     $this->assertNull($object->getName());
 }