コード例 #1
0
ファイル: TitleTest.php プロジェクト: hxsam/PHPPresentation
 public function testText()
 {
     $object = new Title();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Title', $object->setText());
     $this->assertNull($object->getText());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Title', $object->setText('AAAA'));
     $this->assertEquals('AAAA', $object->getText());
 }