Psecio\PropAuth\EnforcerTest::testGetPeopertyValueMethod PHP Method

testGetPeopertyValueMethod() public method

Test the getting of a value from a getter on the subject
    public function testGetPeopertyValueMethod()
    {
        $firstname = 'Chris';
        $subject = new TestPropertySubject();
        $en = new Enforcer();
        $result = $en->getPropertyValue('firstname', $subject);
        $this->assertEquals($firstname, $result);
    }