public function testIsPasswordValid()
 {
     $encoder = new MessageDigestPasswordEncoder();
     $this->assertTrue($encoder->isPasswordValid(hash('sha256', 'password'), 'password', ''));
 }