Psecio\PropAuth\EnforcerTest::testGetPropertyGetPropertyMethod PHP Метод

testGetPropertyGetPropertyMethod() публичный Метод

Test the getting of a peoperty on the subject via a "getPropery" method
    public function testGetPropertyGetPropertyMethod()
    {
        $lastname = 'Cornutt';
        $subject = new TestPropertySubject();
        $en = new Enforcer();
        $result = $en->getPropertyValue('lastname', $subject);
        $this->assertEquals($lastname, $result);
    }