getHtml() public method

Convert to HTML
public getHtml ( )
Example #1
0
 /**
  * Testing that Formidable output given back to Formidable gives the same output
  */
 public function testOutIn()
 {
     $form = $this->getForm('out_in.html');
     $html = $form->getHtml();
     $otherForm = new Form($html);
     $otherHtml = $otherForm->getHtml();
     $this->assertEquals($html, $otherHtml);
 }