PopTest\Form\ElementTest::testSetAndGetLabel PHP Method

testSetAndGetLabel() public method

public testSetAndGetLabel ( )
    public function testSetAndGetLabel()
    {
        $e = new Element('text', 'email');
        $e->setLabel('Email:');
        $e->setLabel(array('Email:' => array('class' => 'label-class')));
        $this->assertEquals('Email:', $e->getLabel());
    }