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.java202 callGetEid(true /* success */, "ABCDE" /* eid */, CARD_ID); in testGetEid_noPrivileges()
208 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */, CARD_ID)); in testGetEid_withPhoneStatePrivileged()
214 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */, CARD_ID)); in testGetEid_withCarrierPrivileges()
220 assertNull(callGetEid(false /* success */, null /* eid */, CARD_ID)); in testGetEid_failure()
226 assertNull(callGetEid(true /* success */, null /* eid */, CARD_ID)); in testGetEid_nullReturnValue()
232 assertEquals("ABCDE", callGetEid(true /* success */, "ABCDE" /* eid */, in testGetEid_unsupportedCardId()
1202 private String callGetEid(final boolean success, final @Nullable String eid, int cardId) { in callGetEid() method in EuiccControllerTest