PhpOffice\PhpPresentation\Tests\Shape\RichText\ParagraphTest::testHashIndex PHP Method

testHashIndex() public method

Test get/set hashIndex
public testHashIndex ( )
    public function testHashIndex()
    {
        $object = new Paragraph();
        $value = rand(1, 100);
        $object->setHashIndex($value);
        $this->assertEquals($value, $object->getHashIndex());
    }