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

testSetGetHashIndex() public method

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