From: Mohamad Al-Jaf mohamadaljaf@gmail.com
--- dlls/windows.networking.connectivity/tests/connectivity.c | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/dlls/windows.networking.connectivity/tests/connectivity.c b/dlls/windows.networking.connectivity/tests/connectivity.c index 88634cbea95..80af03b4b67 100644 --- a/dlls/windows.networking.connectivity/tests/connectivity.c +++ b/dlls/windows.networking.connectivity/tests/connectivity.c @@ -80,6 +80,13 @@ static void test_NetworkInformationStatics(void) hr = IActivationFactory_QueryInterface( factory, &IID_INetworkInformationStatics, (void **)&network_information_statics ); ok( hr == S_OK, "got hr %#lx.\n", hr );
+ str = (void *)0xdeadbeef; + hr = IActivationFactory_GetRuntimeClassName( factory, &str ); + todo_wine + ok( hr == E_ILLEGAL_METHOD_CALL, "got hr %#lx.\n", hr ); + todo_wine + ok( str == NULL, "got str %s.\n", wine_dbgstr_hstring( str ) ); + hr = CoCreateInstance( &CLSID_NetworkListManager, NULL, CLSCTX_INPROC_SERVER, &IID_INetworkListManager, (void **)&network_list_manager ); ok( hr == S_OK, "got hr %#lx.\n", hr ); if (FAILED(hr))