コード例 #1
0
 public function testShowErrorInRadio()
 {
     $element = new Element\Radio('direction');
     $element->setLabel("Direction");
     $element->setValueOptions(array('0' => 'programming', '1' => 'design'));
     $element->setMessages(array('Error message'));
     $markup = $this->helper->__invoke($element);
     $this->assertContains('<ul><li>Error message</li></ul>', $markup);
 }