Skip to content

Commit b640441

Browse files
committed
AVInput COM-RPC Support: WIP
1 parent 90db336 commit b640441

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

Tests/L1Tests/tests/test_AVInput.cpp

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ class AVInputTest : public ::testing::Test {
186186
// </pca>
187187
};
188188

189+
// <pca> debug
190+
#if 0
189191
TEST_F(AVInputTest, RegisteredMethods)
190192
{
191193
TEST_LOG("*** _DEBUG: TEST_F(AVInputTest, RegisteredMethods): entry");
@@ -221,6 +223,9 @@ TEST_F(AVInputTest, contentProtected)
221223
EXPECT_EQ(response, string("{\"isContentProtected\":true,\"success\":true}"));
222224
TEST_LOG("*** _DEBUG: TEST_F(AVInputTest, contentProtected): Mark 2");
223225
}
226+
// <pca>
227+
#endif
228+
// </pca>
224229

225230
class AVInputDsTest : public AVInputTest {
226231
protected:
@@ -271,6 +276,10 @@ class AVInputDsTest : public AVInputTest {
271276
}
272277
};
273278

279+
// <pca> debug
280+
#if 0
281+
// </pca>
282+
274283
TEST_F(AVInputDsTest, numberOfInputs)
275284
{
276285
ON_CALL(*p_hdmiInputImplMock, getNumberOfInputs())
@@ -329,6 +338,10 @@ TEST_F(AVInputDsTest, getVRRFrameRate)
329338
EXPECT_EQ(response, string("{\"currentVRRVideoFrameRate\":0,\"success\":true}"));
330339
}
331340

341+
// <pca>
342+
#endif
343+
// </pca>
344+
332345
class AVInputInit : public AVInputDsTest {
333346
protected:
334347
IarmBusImplMock* p_iarmBusImplMock = nullptr;
@@ -415,6 +428,7 @@ class AVInputInit : public AVInputDsTest {
415428
delete p_iarmBusImplMock;
416429
p_iarmBusImplMock = nullptr;
417430
}
431+
TEST_LOG("*** _DEBUG: AVInputInit Destructor: exit");
418432
}
419433
};
420434

@@ -433,6 +447,10 @@ TEST_F(AVInputInit, getInputDevices)
433447
// </pca>
434448
}
435449

450+
// <pca> debug
451+
#if 0
452+
// </pca>
453+
436454
TEST_F(AVInputInit, getInputDevices_HDMI)
437455
{
438456
EXPECT_CALL(*p_hdmiInputImplMock, getNumberOfInputs())
@@ -471,10 +489,6 @@ TEST_F(AVInputInit, writeEDID_InvalidParameters)
471489
EXPECT_EQ(response, string(""));
472490
}
473491

474-
// <pca> debug
475-
#if 0
476-
// </pca>
477-
478492
TEST_F(AVInputInit, readEDID)
479493
{
480494
EXPECT_CALL(*p_hdmiInputImplMock, getEDIDBytesInfo(::testing::_, ::testing::_))

0 commit comments

Comments
 (0)