public function testPasswordHash()
    {
        $registry = Zend_Registry::getInstance();
        $hash = $registry->config->auth->hash;
        $password = '******';
        $expectedHash = hash('SHA256', $hash . $password);

        $this->object->setPassword($password, $hash);

        $this->assertEquals($expectedHash, $this->object->getPassword());

    }