示例#1
0
 public function testMatch()
 {
     $this->assertTrue(Password::match($this->pw, $this->hash));
     $this->assertFalse(Password::match('myincorrectpassword', $this->hash));
 }