PhpOffice\PhpPresentation\Tests\Shape\Drawing\Base64Test::testData PHP Method

testData() public method

public testData ( )
    public function testData()
    {
        $oDrawing = new Base64();
        $this->assertNull($oDrawing->getData());
        $oDrawing->setData($this->imageData);
        $this->assertNotEmpty($oDrawing->getData());
    }