Home
last modified time | relevance | path

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

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DWapPushOverSmsTest.java71 doReturn(true).when(mWspTypeDecoder).decodeUintvarInteger(anyInt()); in testDispatchWapPdu()
72 doReturn(true).when(mWspTypeDecoder).decodeContentType(anyInt()); in testDispatchWapPdu()
73 doReturn((long)2).when(mWspTypeDecoder).getValue32(); in testDispatchWapPdu()
74 doReturn(2).when(mWspTypeDecoder).getDecodedDataLength(); in testDispatchWapPdu()
75 doReturn(WspTypeDecoder.CONTENT_TYPE_B_PUSH_CO).when(mWspTypeDecoder).getValueString(); in testDispatchWapPdu()
116 assertEquals(mWspTypeDecoder.getContentParameters(), in testDispatchWapPdu()
126 doReturn(true).when(mWspTypeDecoder).decodeUintvarInteger(anyInt()); in testDispatchWapPduFromBlockedNumber_noIntentsDispatched()
127 doReturn(true).when(mWspTypeDecoder).decodeContentType(anyInt()); in testDispatchWapPduFromBlockedNumber_noIntentsDispatched()
128 doReturn((long) 2).when(mWspTypeDecoder).getValue32(); in testDispatchWapPduFromBlockedNumber_noIntentsDispatched()
129 doReturn(2).when(mWspTypeDecoder).getDecodedDataLength(); in testDispatchWapPduFromBlockedNumber_noIntentsDispatched()
[all …]
H A DTelephonyTest.java226 protected WspTypeDecoder mWspTypeDecoder; field in TelephonyTest
517 doReturn(mWspTypeDecoder).when(mTelephonyComponentFactory) in setUp()