[SHELL32_APITEST] - Add a test for CShellDesktop to show what breaks the select folder dialog.

svn path=/trunk/; revision=73235
This commit is contained in:
Giannis Adamopoulos 2016-11-15 14:08:57 +00:00
parent 42d50ca091
commit 4a5fe31949

View file

@ -182,6 +182,10 @@ TestShellFolder(
hr = psf2->CreateViewObject(NULL, IID_PPV_ARG(IShellView, &psv_2));
ok(hr == S_OK, "hr = %lx\n", hr);
ok(psv != psv_2, "Expected %p != %p\n", static_cast<PVOID>(psv), static_cast<PVOID>(psv_2));
STRRET strret;
hr = psf2->GetDisplayNameOf(NULL, 0, &strret);
ok(hr == S_OK, "hr = %lx\n", hr);
}
VOID TestInitialize(_In_ IShellFolder *psf)