Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 179e6f47 authored by Shuo Qian's avatar Shuo Qian Committed by android-build-merger
Browse files

Merge "Add Sim absent assertion in the setup" into oc-dr1-dev

am: 1d87508c

Change-Id: Ice7b20e0916f8d7041076eeb1f00d86c706ede96
parents d4192a18 1d87508c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -37,6 +37,10 @@ void RadioHidlTest::SetUp() {
    EXPECT_EQ(RadioResponseType::SOLICITED, radioRsp->rspInfo.type);
    EXPECT_EQ(serial, radioRsp->rspInfo.serial);
    EXPECT_EQ(RadioError::NONE, radioRsp->rspInfo.error);

    /* Vts Testing with Sim Absent only. This needs to be removed later in P when sim present
     * scenarios will be tested. */
    EXPECT_EQ(CardState::ABSENT, cardStatus.cardState);
}

void RadioHidlTest::TearDown() {}
+4 −0
Original line number Diff line number Diff line
@@ -38,6 +38,10 @@ void RadioHidlTest_v1_1::SetUp() {
    EXPECT_EQ(RadioResponseType::SOLICITED, radioRsp_v1_1->rspInfo.type);
    EXPECT_EQ(serial, radioRsp_v1_1->rspInfo.serial);
    EXPECT_EQ(RadioError::NONE, radioRsp_v1_1->rspInfo.error);

    /* Vts Testing with Sim Absent only. This needs to be removed later in P when sim present
     * scenarios will be tested. */
    EXPECT_EQ(CardState::ABSENT, cardStatus.cardState);
}

void RadioHidlTest_v1_1::TearDown() {}