windows.perception.stub/tests: Add IHolographicSpaceStatics3::get_IsConfigured() tests.

This commit is contained in:
Mohamad Al-Jaf 2023-03-10 20:43:34 -05:00 committed by Alexandre Julliard
parent d0ec6366e4
commit f2a7b2f9e1

View file

@ -153,6 +153,11 @@ static void test_HolographicSpaceStatics(void)
ok( hr == S_OK, "got hr %#lx.\n", hr );
value = 2;
hr = IHolographicSpaceStatics3_get_IsConfigured( holographicspace_statics3, &value );
todo_wine ok( hr == S_OK, "got hr %#lx.\n", hr );
todo_wine ok( value == FALSE, "got %d.\n", value );
ref = IHolographicSpaceStatics3_Release( holographicspace_statics3 );
ok( ref == 2, "got ref %ld.\n", ref );
done: