/**
* 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);
}