Phue\Test\ConditionTest::testGetSetAttribute PHP Method

testGetSetAttribute() public method

Test: Get/set attribute
public testGetSetAttribute ( )
    public function testGetSetAttribute()
    {
        $this->assertEquals('buttonevent', $this->condition->getAttribute());
        $this->condition->setAttribute('dummy');
        $this->assertEquals('dummy', $this->condition->getAttribute());
    }