Psecio\PropAuth\UserTest::testGetSetProperty PHP Method

testGetSetProperty() public method

Test the getter/setter methods for properties
public testGetSetProperty ( )
    public function testGetSetProperty()
    {
        $user = new User([]);
        $key = 'foo';
        $value = 'testing123';
        $user->addProperty($key, $value);
        $this->assertEquals($value, $user->getProperty($key));
    }