setFill() public method

public setFill ( PhpOffice\PhpPresentation\Style\Fill $fill ) : Outline
$fill PhpOffice\PhpPresentation\Style\Fill
return Outline
Ejemplo n.º 1
0
 /**
  * Test get/set fill
  */
 public function testSetGetFill()
 {
     $object = new Outline();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->setFill(new Fill()));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
 }