PhpOffice\PhpPresentation\Tests\Shape\Chart\SeriesTest::testShowPercentage PHP Method

testShowPercentage() public method

public testShowPercentage ( )
    public function testShowPercentage()
    {
        $object = new Series();
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setShowPercentage(true));
        $this->assertTrue($object->hasShowPercentage());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setShowPercentage(false));
        $this->assertFalse($object->hasShowPercentage());
    }