コード例 #1
0
ファイル: PasswordTest.php プロジェクト: LucasFyl/korakia
 public function testMatch()
 {
     $this->assertTrue(Password::match($this->pw, $this->hash));
     $this->assertFalse(Password::match('myincorrectpassword', $this->hash));
 }