view = new Zend_View(); $this->helper = new Zend_View_Helper_FormSubmit(); $this->helper->setView($this->view); } /** * Tears down the fixture, for example, close a network connection. * This method is called after a test is executed. * * @return void */ public function tearDown() { unset($this->helper, $this->view); } /** * @group ZF-9926 */ public function testRendersSubmitInput() { $html = $this->helper->formSubmit(array( 'name' => 'foo', 'value' => 'Submit!', 'attribs' => array('onsubmit' => array('foo', '\'bar\'', 10)) )); $this->assertEquals('', $html); } } // Call Zend_View_Helper_FormSubmitTest::main() if this source file is executed directly. if (PHPUnit_MAIN_METHOD == "Zend_View_Helper_FormSubmitTest::main") { Zend_View_Helper_FormSubmitTest::main(); }