Home
last modified time | relevance | path

Searched refs:callGetEid (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/euicc/
DEuiccControllerTest.java248 callGetEid(true /* success */, "ABCDE" /* eid */, CARD_ID); in testGetEid_noPrivileges()
254 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */, CARD_ID)); in testGetEid_withPhoneStatePrivileged()
260 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */, CARD_ID)); in testGetEid_withCarrierPrivileges()
266 assertNull(callGetEid(false /* success */, null /* eid */, CARD_ID)); in testGetEid_failure()
272 assertNull(callGetEid(true /* success */, null /* eid */, CARD_ID)); in testGetEid_nullReturnValue()
278 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */, in testGetEid_unsupportedCardId()
2020 private String callGetEid(final boolean success, final @Nullable String eid, int cardId) { in callGetEid() method in EuiccControllerTest