From f2a7b2f9e1c1d3877e8b7af32c9340bff223819f Mon Sep 17 00:00:00 2001 From: Mohamad Al-Jaf Date: Fri, 10 Mar 2023 20:43:34 -0500 Subject: [PATCH] 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: