Emarref\Jwt\Token\PropertyListTest::testSetProperty PHP Метод

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

public testSetProperty ( )
    public function testSetProperty()
    {
        $property = new PropertyStub();
        $this->properties->expects($this->once())->method('offsetSet')->with($property->getName(), $property);
        $this->propertyList->setProperty($property);
        return $property;
    }