private function assertLoginData()
 {
     // check copied values
     $this->assertEquals($this->systemUser->getEmail(), $this->loginData->getLoginEmail(), 'login_email for ' . $this->getParams());
     $this->assertEquals($this->adminConsolePartnerId, $this->loginData->getConfigPartnerId(), 'config_partner_id for ' . $this->getParams());
     $this->assertEquals($this->systemUser->getSalt(), $this->loginData->getSalt(), 'salt for ' . $this->getParams());
     $this->assertEquals($this->systemUser->getSha1Password(), $this->loginData->getSha1Password(), 'sha1_password for ' . $this->getParams());
     $this->assertEquals(0, $this->loginData->getLoginAttempts(), 'login_attempts for ' . $this->getParams());
     $this->assertEquals(kConf::get('user_login_block_period'), $this->loginData->getLoginBlockPeriod(), 'login_block_period for ' . $this->getParams());
     $this->assertEquals(kConf::get('user_login_max_wrong_attempts'), $this->loginData->getMaxLoginAttempts(), 'max_login_attempts for ' . $this->getParams());
     $this->assertEquals(kConf::get('user_login_num_prev_passwords_to_keep'), $this->loginData->getNumPrevPassToKeep(), 'num_prev_pass_to_keep for ' . $this->getParams());
     $this->assertEquals(kConf::get('user_login_password_replace_freq'), $this->loginData->getPassReplaceFreq(), 'pass_replace_freq for ' . $this->getParams());
     $this->assertEquals(null, $this->loginData->getPasswordHashKey(), 'password_hash_key for ' . $this->getParams());
     $this->assertEquals(null, $this->loginData->getPreviousPasswords(), 'previous_passwords for ' . $this->getParams());
     $this->assertEquals(null, $this->loginData->getLoginBlockedUntil(), 'login_blocked_until for ' . $this->getParams());
     $this->assertEquals($this->systemUser->getFirstName(), $this->loginData->getFirstName(), 'first_name for ' . $this->getParams());
     $this->assertEquals($this->systemUser->getLastName(), $this->loginData->getLastName(), 'last_name for ' . $this->getParams());
     $this->assertEquals($this->systemUser->getName(), $this->loginData->getFullName(), 'full_name for ' . $this->getParams());
     // check new values
     $this->assertEquals($this->adminConsolePartnerId, $this->loginData->getLastLoginPartnerId(), 'last_login_partner_id for ' . $this->getParams());
 }