コード例 #1
0
ファイル: ShadowTest.php プロジェクト: hxsam/PHPPresentation
 /**
  * Test get/set alignment
  */
 public function testSetGetAlignment()
 {
     $object = new Shadow();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Shadow', $object->setAlignment());
     $this->assertEquals(Shadow::SHADOW_BOTTOM_RIGHT, $object->getAlignment());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Shadow', $object->setAlignment(Shadow::SHADOW_CENTER));
     $this->assertEquals(Shadow::SHADOW_CENTER, $object->getAlignment());
 }