コード例 #1
0
ファイル: PlexityTest.php プロジェクト: bobsta63/plexity
 public function testInvalidRequireUpperCase()
 {
     $password = new Plexity();
     $password->requireUpperCase();
     $this->setExpectedException('Ballen\\Plexity\\Exceptions\\ValidationException', 'The string failed to meet the upper case requirements.');
     $password->check('allthelettersarelowercase');
 }