Fhaculty\Graph\Tests\Attribute\AbstractAttributeAwareTest::testAttributeSetRemoveGet PHP Method

testAttributeSetRemoveGet() public method

public testAttributeSetRemoveGet ( Fhaculty\Graph\Attribute\AttributeAware $entity )
$entity Fhaculty\Graph\Attribute\AttributeAware
    public function testAttributeSetRemoveGet(AttributeAware $entity)
    {
        $entity->setAttribute('test', 'value');
        $this->assertEquals('value', $entity->getAttribute('test'));
        $entity->removeAttribute('test');
        $this->assertEquals(null, $entity->getAttribute('test'));
    }