mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
shell32/tests: Add some event tests to ExplorerBrowser tests.
This commit is contained in:
parent
ab63bc0515
commit
b2a8de3de6
@ -631,6 +631,11 @@ static void test_Advise(void)
|
||||
|
||||
ok(ebev.ref == 10, "Got %d\n", ebev.ref);
|
||||
|
||||
ebev.completed = 0;
|
||||
ebrowser_browse_to_desktop(peb);
|
||||
process_msgs();
|
||||
ok(ebev.completed == 10, "Got %d\n", ebev.completed);
|
||||
|
||||
/* Remove a bunch somewhere in the middle */
|
||||
for(i = 4; i < 8; i++)
|
||||
{
|
||||
@ -638,6 +643,11 @@ static void test_Advise(void)
|
||||
ok(hr == S_OK, "got (0x%08x)\n", hr);
|
||||
}
|
||||
|
||||
ebev.completed = 0;
|
||||
ebrowser_browse_to_desktop(peb);
|
||||
process_msgs();
|
||||
ok(ebev.completed == 6, "Got %d\n", ebev.completed);
|
||||
|
||||
if(0)
|
||||
{
|
||||
/* Using unadvise with a previously unadvised cookie results
|
||||
@ -657,6 +667,11 @@ static void test_Advise(void)
|
||||
|
||||
ok(ebev.ref == 0, "Got %d\n", ebev.ref);
|
||||
|
||||
ebev.completed = 0;
|
||||
ebrowser_browse_to_desktop(peb);
|
||||
process_msgs();
|
||||
ok(ebev.completed == 0, "Got %d\n", ebev.completed);
|
||||
|
||||
/* ::Destroy implies ::Unadvise. */
|
||||
hr = IExplorerBrowser_Advise(peb, pebe, &cookies[0]);
|
||||
ok(hr == S_OK, "Got 0x%08x\n", hr);
|
||||
|
Loading…
Reference in New Issue
Block a user