Wonjun Jung : wbemprox: Add Win32_SoundDevice query test for Caption property.
Module: wine Branch: master Commit: fe28e61580e933d5802de52c39f17a51dcabad70 URL: https://gitlab.winehq.org/wine/wine/-/commit/fe28e61580e933d5802de52c39f17a5... Author: Wonjun Jung <kokoseij(a)gmail.com> Date: Wed Aug 30 01:47:36 2023 +0900 wbemprox: Add Win32_SoundDevice query test for Caption property. --- dlls/wbemprox/tests/query.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/wbemprox/tests/query.c b/dlls/wbemprox/tests/query.c index beceffe7e69..23b4c86d33a 100644 --- a/dlls/wbemprox/tests/query.c +++ b/dlls/wbemprox/tests/query.c @@ -2122,6 +2122,7 @@ static void test_Win32_SoundDevice( IWbemServices *services ) hr = IEnumWbemClassObject_Next( result, 10000, 1, &obj, &count ); if (hr != S_OK) break; + check_property( obj, L"Caption", VT_BSTR, CIM_STRING ); check_property( obj, L"DeviceID", VT_BSTR, CIM_STRING ); check_property( obj, L"Manufacturer", VT_BSTR, CIM_STRING ); check_property( obj, L"Name", VT_BSTR, CIM_STRING );
participants (1)
-
Alexandre Julliard