PhpPresentation\Tests\Writer\PowerPoint2007\PptChartsTest::testPlotAreaBadType PHP Method

testPlotAreaBadType() public method

public testPlotAreaBadType ( )
    public function testPlotAreaBadType()
    {
        $oSlide = $this->oPresentation->getActiveSlide();
        $oShape = $oSlide->createChartShape();
        $oShape->setResizeProportional(false)->setHeight(550)->setWidth(700)->setOffsetX(120)->setOffsetY(80);
        $stub = $this->getMockForAbstractClass('PhpOffice\\PhpPresentation\\Shape\\Chart\\Type\\AbstractType');
        $oShape->getPlotArea()->setType($stub);
        TestHelperDOCX::getDocument($this->oPresentation, 'PowerPoint2007');
    }