Gc\View\Helper\FormCheckboxTest::setUp PHP Method

setUp() protected method

This method is called before a test is executed.
protected setUp ( ) : void
return void
    protected function setUp()
    {
        $this->element = new Element\Checkbox('foo');
        $options = array('checked_value' => 'checked', 'unchecked_value' => 'unchecked');
        $this->element->setOptions($options);
        $this->object = new FormCheckbox();
    }