Beispiel #1
0
 public function testNotBlankValidation()
 {
     $notBlank = array('id', 'description');
     $this->validateNotBlanks($notBlank);
     $this->object->setID('test');
     $this->object->setDescription('lots of stuff');
     $this->validate(0);
 }