コード例 #1
0
ファイル: modUserTest.php プロジェクト: ChrstnMgcn/revolution
 /**
  *
  * @param int $length
  * @param array $options
  * @dataProvider providerGeneratePassword
  */
 public function testGeneratePassword($length, array $options = array())
 {
     $password = $this->user->generatePassword($length, $options);
     $this->assertNotEmpty($password);
     $this->assertEquals($length, strlen($password));
 }