Psecio\Jwt\HeaderTest::testGetSetKey PHP Method

testGetSetKey() public method

Test the getter/setter for the key value
public testGetSetKey ( )
    public function testGetSetKey()
    {
        $key = 'test123';
        $this->header->setKey($key);
        $this->assertEquals($key, $this->header->getKey());
    }