ok(urlComponents.nScheme==INTERNET_SCHEME_HTTP,"urlComponents->nScheme should have been INTERNET_SCHEME_HTTP instead of %d\n",urlComponents.nScheme);
ok(!urlComponents.lpszUserName,".lpszUserName should have been set to NULL\n");
ok(!urlComponents.lpszPassword,".lpszPassword should have been set to NULL\n");
ok(!urlComponents.lpszExtraInfo,".lpszExtraInfo should have been set to NULL\n");
ok(urlComponents.dwExtraInfoLength==strlen(TEST_URL_HASH),".dwExtraInfoLength should be %d, but is %d\n",lstrlenA(TEST_URL_HASH),urlComponents.dwExtraInfoLength);
ok(!strncmp(urlComponents.lpszExtraInfo,TEST_URL_HASH,strlen(TEST_URL_HASH)),".lpszExtraInfo should be %s but is %s\n",TEST_URL_HASH,urlComponents.lpszExtraInfo);
ok(!urlComponents.dwUserNameLength,".dwUserNameLength should be 0, but is %d\n",urlComponents.dwUserNameLength);
ok(!urlComponents.dwPasswordLength,".dwPasswordLength should be 0, but is %d\n",urlComponents.dwPasswordLength);
ok(!urlComponents.dwExtraInfoLength,".dwExtraInfoLength should be 0, but is %d\n",urlComponents.dwExtraInfoLength);