PhpOffice\PhpPresentation\Tests\Shape\Chart\MarkerTest::testSize PHP Method

testSize() public method

public testSize ( )
    public function testSize()
    {
        $object = new Marker();
        $value = rand(1, 100);
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Marker', $object->setSize($value));
        $this->assertEquals($value, $object->getSize());
    }