示例#1
0
 /**
  * renderOptionTagNotSelected
  *
  * @test
  */
 public function renderOptionTagNotSelected()
 {
     $htmlGenerated = tx_t3devapi_html::renderOptionTag('test', 'test', FALSE);
     $html = '<option value="test">test</option>';
     $this->debug($htmlGenerated);
     $this->assertEquals(trim($htmlGenerated), $html);
 }