Searched refs:scAddress (Results 1 – 2 of 2) sorted by relevance
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowSmsManager.java | 37 String scAddress, in sendDataMessage() argument 46 …lastDataParams = new DataMessageParams(destinationAddress, scAddress, destinationPort, data, sentI… in sendDataMessage() 52 String scAddress, in sendTextMessage() argument 64 …lastTextSmsParams = new TextSmsParams(destinationAddress, scAddress, text, sentIntent, deliveryInt… in sendTextMessage() 70 String scAddress, in sendMultipartTextMessage() argument 82 …lastTextMultipartParams = new TextMultipartParams(destinationAddress, scAddress, parts, sentIntent… in sendMultipartTextMessage() 129 private final String scAddress; field in ShadowSmsManager.DataMessageParams 135 …public DataMessageParams(String destinationAddress, String scAddress, short destinationPort, byte[… in DataMessageParams() argument 137 this.scAddress = scAddress; in DataMessageParams() 149 return scAddress; in getScAddress() [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowSmsManagerTest.java | 21 private final String scAddress = "serviceCenterAddress"; field in ShadowSmsManagerTest 35 smsManager.sendTextMessage(destAddress, scAddress, "Body Text", null, null); in sendTextMessage_shouldStoreLastSentTextParameters() 39 assertThat(params.getScAddress()).isEqualTo(scAddress); in sendTextMessage_shouldStoreLastSentTextParameters() 47 smsManager.sendTextMessage("", scAddress, "testSmsBodyText", null, null); in sendTextMessage_shouldThrowExceptionWithEmptyDestination() 52 smsManager.sendTextMessage(destAddress, scAddress, "", null, null); in sentTextMessage_shouldThrowExceptionWithEmptyText() 57 …smsManager.sendMultipartTextMessage(destAddress, scAddress, Lists.newArrayList("Foo", "Bar", "Baz"… in sendMultipartMessage_shouldStoreLastSendMultimediaParameters() 61 assertThat(params.getScAddress()).isEqualTo(scAddress); in sendMultipartMessage_shouldStoreLastSendMultimediaParameters() 69 smsManager.sendMultipartTextMessage("", scAddress, Lists.newArrayList("Foo"), null, null); in sendMultipartTextMessage_shouldThrowExceptionWithEmptyDestination() 74 smsManager.sendMultipartTextMessage(destAddress, scAddress, null, null, null); in sentMultipartTextMessage_shouldThrowExceptionWithEmptyText() 86 smsManager.sendDataMessage(destAddress, scAddress, destPort, data, sentIntent, deliveryIntent); in sendDataMessage_shouldStoreLastParameters() [all …]
|