PhpOffice\PhpPresentation\Tests\Style\BulletTest::testSetGetHashIndex PHP Method

testSetGetHashIndex() public method

Test get/set has index
public testSetGetHashIndex ( )
    public function testSetGetHashIndex()
    {
        $object = new Bullet();
        $value = rand(1, 100);
        $object->setHashIndex($value);
        $this->assertEquals($value, $object->getHashIndex());
    }