Skip to content

Commit a0125fc

Browse files
committed
AVInput COM-RPC Support: WIP
1 parent 3090f3c commit a0125fc

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

Tests/L1Tests/tests/test_AVInput.cpp

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ class AVInputTest : public ::testing::Test {
132132
ON_CALL(comLinkMock, Instantiate(::testing::_, ::testing::_, ::testing::_))
133133
.WillByDefault(::testing::Invoke(
134134
[&](const RPC::Object& object, const uint32_t waitTime, uint32_t& connectionId) {
135+
TEST_LOG("*** _DEBUG: Instantiate called");
135136
AVInputImpl = Core::ProxyType<Plugin::AVInputImplementation>::Create();
136137
return &AVInputImpl;
137138
}));
@@ -186,8 +187,6 @@ class AVInputTest : public ::testing::Test {
186187
// </pca>
187188
};
188189

189-
// <pca> debug
190-
#if 0
191190
TEST_F(AVInputTest, RegisteredMethods)
192191
{
193192
TEST_LOG("*** _DEBUG: TEST_F(AVInputTest, RegisteredMethods): entry");
@@ -223,9 +222,6 @@ TEST_F(AVInputTest, contentProtected)
223222
EXPECT_EQ(response, string("{\"isContentProtected\":true,\"success\":true}"));
224223
TEST_LOG("*** _DEBUG: TEST_F(AVInputTest, contentProtected): Mark 2");
225224
}
226-
// <pca>
227-
#endif
228-
// </pca>
229225

230226
class AVInputDsTest : public AVInputTest {
231227
protected:
@@ -276,10 +272,6 @@ class AVInputDsTest : public AVInputTest {
276272
}
277273
};
278274

279-
// <pca> debug
280-
#if 0
281-
// </pca>
282-
283275
TEST_F(AVInputDsTest, numberOfInputs)
284276
{
285277
ON_CALL(*p_hdmiInputImplMock, getNumberOfInputs())
@@ -338,10 +330,6 @@ TEST_F(AVInputDsTest, getVRRFrameRate)
338330
EXPECT_EQ(response, string("{\"currentVRRVideoFrameRate\":0,\"success\":true}"));
339331
}
340332

341-
// <pca>
342-
#endif
343-
// </pca>
344-
345333
class AVInputInit : public AVInputDsTest {
346334
protected:
347335
// <pca> debug

0 commit comments

Comments
 (0)