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