Emarref\Jwt\Claim\JwtIdTest::testSetValue PHP Method

testSetValue() public method

public testSetValue ( )
    public function testSetValue()
    {
        $newValue = 'NewValue';
        $this->claim->setValue($newValue);
        $this->assertSame($newValue, $this->claim->getValue());
    }