Module: wine Branch: master Commit: f2a7b2f9e1c1d3877e8b7af32c9340bff223819f URL: https://gitlab.winehq.org/wine/wine/-/commit/f2a7b2f9e1c1d3877e8b7af32c9340b... Author: Mohamad Al-Jaf <mohamadaljaf(a)gmail.com> Date: Fri Mar 10 20:43:34 2023 -0500 windows.perception.stub/tests: Add IHolographicSpaceStatics3::get_IsConfigured() tests. --- dlls/windows.perception.stub/tests/perception.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dlls/windows.perception.stub/tests/perception.c b/dlls/windows.perception.stub/tests/perception.c index 67c45e2a480..1c763930e05 100644 --- a/dlls/windows.perception.stub/tests/perception.c +++ b/dlls/windows.perception.stub/tests/perception.c @@ -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: