Skip to content

Commit 55d5a99

Browse files
committed
AVInput COM-RPC Support: WIP
1 parent a0cb62c commit 55d5a99

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Tests/L1Tests/tests/test_AVInput.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,11 @@ TEST_F(AVInputDsTest, currentVideoMode)
291291

292292
TEST_F(AVInputDsTest, getEdid2AllmSupport)
293293
{
294+
EXPECT_CALL(*p_hdmiInputImplMock, getEdid2AllmSupport(::testing::_, ::testing::_))
295+
.WillOnce([](int iport, bool *allmSupport) {
296+
*allmSupport = true;
297+
});
298+
294299
EXPECT_EQ(Core::ERROR_NONE, handler.Invoke(connection, _T("getEdid2AllmSupport"), _T("{\"portId\": \"0\",\"allmSupport\":true}"), response));
295300
EXPECT_EQ(response, string("{\"allmSupport\":true,\"success\":true}"));
296301
}

0 commit comments

Comments
 (0)