setARGB() public method

Set ARGB
public setARGB ( string $pValue = self::COLOR_BLACK ) : Color
$pValue string
return Color
コード例 #1
0
ファイル: ColorTest.php プロジェクト: hxsam/PHPPresentation
 /**
  * Test get/set ARGB
  */
 public function testSetGetARGB()
 {
     $object = new Color();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Color', $object->setARGB());
     $this->assertEquals(Color::COLOR_BLACK, $object->getARGB());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Color', $object->setARGB(''));
     $this->assertEquals(Color::COLOR_BLACK, $object->getARGB());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Color', $object->setARGB(Color::COLOR_BLUE));
     $this->assertEquals(Color::COLOR_BLUE, $object->getARGB());
 }