$this->assertIdentical($password_hasher->getCountLog2($account->getPassword()),$password_hasher::MIN_HASH_COUNT,'Re-hashed password has the minimum number of log2 iterations.');
$this->assertIdentical($password_hasher->getCountLog2($account->getPassword()),$password_hasher::MIN_HASH_COUNT+1,'Re-hashed password has the correct number of log2 iterations.');
$this->assertSame($this->passwordHasher->getCountLog2($this->hashedPassword),PhpassHashedPassword::MIN_HASH_COUNT,'Hashed password has the minimum number of log2 iterations.');
$this->assertSame($this->passwordHasher->getCountLog2($rehashed_password),PhpassHashedPassword::MIN_HASH_COUNT+1,'Re-hashed password has the correct number of log2 iterations.');