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

testShowSeriesName() public method

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