Guest User

Untitled

a guest
Jan 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php>
  2. /**
  3. * @test
  4. */
  5. public function testValidation()
  6. {
  7. $element = new Zend_Form_Element_MultiCheckbox('c');
  8. $element->addMultiOptions(
  9. array(
  10. '1' => 1,
  11. '2' => 2,
  12. '3' => 3,
  13. )
  14. );
  15. $element->setRequired(true);
  16.  
  17. $this->assertFalse($element->isValid(array()));
  18. }
Add Comment
Please, Sign In to add comment