Commit 665717ae authored by Roman Dadkov's avatar Roman Dadkov Committed by Alexandre Julliard

ole32/tests: Add test for OleRun.

parent aaabd02c
......@@ -1926,6 +1926,14 @@ static const IUnknownVtbl UnknownVtbl =
static IUnknown unknown = { &UnknownVtbl };
static void test_OleRun(void)
{
HRESULT hr;
hr = OleRun(&unknown);
ok(hr == S_OK, "OleRun failed 0x%08x\n", hr);
}
static void test_OleLockRunning(void)
{
HRESULT hr;
......@@ -1984,6 +1992,7 @@ START_TEST(ole2)
test_data_cache();
test_default_handler();
test_runnable();
test_OleRun();
test_OleLockRunning();
test_OleDraw();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment