getInitials() public method

public getInitials ( ) : mixed
return mixed
Ejemplo n.º 1
0
 public function testGetSetInitials()
 {
     $expectedVal = 'AABBCCDD';
     $object = new Author();
     $this->assertNull($object->getInitials());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Comment\\Author', $object->setInitials($expectedVal));
     $this->assertEquals($expectedVal, $object->getInitials());
 }