/**
  * Tests the verify method.
  *
  * @covers        JCryptPasswordSimple::verify
  * @dataProvider  verifyData
  */
 public function testVerify($password, $hash, $expectation)
 {
     $hasher = new JCryptPasswordSimple();
     $this->assertEquals($hasher->verify($password, $hash), $expectation);
 }