Commit 33c6eeb9 authored by Alexander Dorofeyev's avatar Alexander Dorofeyev Committed by Alexandre Julliard

quartz/tests: Add filtermapper aggregation tests.

parent 4bc76025
......@@ -167,12 +167,27 @@ static void test_filter_graph_aggregations(void)
}
}
static void test_filter_mapper_aggregations(void)
{
const IID * iids[] = {
&IID_IFilterMapper2, &IID_IFilterMapper
};
int i;
for (i = 0; i < sizeof(iids) / sizeof(iids[0]); i++)
{
test_aggregation(CLSID_SystemClock, CLSID_FilterMapper2,
IID_IReferenceClock, *iids[i]);
}
}
START_TEST(misc)
{
CoInitialize(NULL);
test_video_renderer_aggregations();
test_filter_graph_aggregations();
test_filter_mapper_aggregations();
CoUninitialize();
}
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