Esempio n. 1
0
 public function testInvalidTypeOnMaximum()
 {
     $password = new Plexity();
     $this->setExpectedException('\\InvalidArgumentException', 'The maximum length value must be of type integer.');
     $password->maximumLength('test');
     $password->check('Ab');
 }