PhpOffice\PhpPresentation\Tests\Shape\Chart\MarkerTest::testSymbol PHP Метод

testSymbol() публичный Метод

public testSymbol ( )
    public function testSymbol()
    {
        $object = new Marker();
        $expected = array_rand(Marker::$arraySymbol);
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Marker', $object->setSymbol($expected));
        $this->assertEquals($expected, $object->getSymbol());
    }