getBulletChar() public method

Get bullet char
public getBulletChar ( ) : string
return string
Example #1
0
 /**
  * Test get/set bullet char
  */
 public function testSetGetBulletChar()
 {
     $object = new Bullet();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Bullet', $object->setBulletChar());
     $this->assertEquals('-', $object->getBulletChar());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Bullet', $object->setBulletChar('a'));
     $this->assertEquals('a', $object->getBulletChar());
 }