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

testLabelPosition() public method

public testLabelPosition ( )
    public function testLabelPosition()
    {
        $object = new Series();
        $this->assertEmpty($object->getHashIndex());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setLabelPosition(Series::LABEL_INSIDEBASE));
        $this->assertEquals(Series::LABEL_INSIDEBASE, $object->getLabelPosition());
    }