Home
last modified time | relevance | path

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

/cts/tests/tests/telecom/src/android/telecom/cts/
DWiredHeadsetTest.java48 assertConnectionState(connection, Connection.STATE_RINGING); in testIncomingCallShortPress_acceptsCall()
52 assertConnectionState(connection, Connection.STATE_ACTIVE); in testIncomingCallShortPress_acceptsCall()
65 assertConnectionState(connection, Connection.STATE_RINGING); in testIncomingCallLongPress_rejectsCall()
69 assertConnectionState(connection, Connection.STATE_DISCONNECTED); in testIncomingCallLongPress_rejectsCall()
110 assertConnectionState(connection, Connection.STATE_DISCONNECTED); in testInCallLongPress_hangupCall()
DRemoteConferenceTest.java84 assertConnectionState(mConnection1, Connection.STATE_ACTIVE); in testRemoteConferenceCreate()
85 assertConnectionState(mConnection2, Connection.STATE_ACTIVE); in testRemoteConferenceCreate()
86 assertConnectionState(mRemoteConnection1, Connection.STATE_ACTIVE); in testRemoteConferenceCreate()
87 assertConnectionState(mRemoteConnection2, Connection.STATE_ACTIVE); in testRemoteConferenceCreate()
126 assertConnectionState(mConnection1, Connection.STATE_HOLDING); in testRemoteConferenceHoldAndUnhold()
127 assertConnectionState(mConnection2, Connection.STATE_HOLDING); in testRemoteConferenceHoldAndUnhold()
128 assertConnectionState(mRemoteConnection1, Connection.STATE_HOLDING); in testRemoteConferenceHoldAndUnhold()
129 assertConnectionState(mRemoteConnection2, Connection.STATE_HOLDING); in testRemoteConferenceHoldAndUnhold()
138 assertConnectionState(mConnection1, Connection.STATE_ACTIVE); in testRemoteConferenceHoldAndUnhold()
139 assertConnectionState(mConnection2, Connection.STATE_ACTIVE); in testRemoteConferenceHoldAndUnhold()
[all …]
DExtendedInCallServiceTest.java215 assertConnectionState(connection, Connection.STATE_RINGING); in testAnswerIncomingCallAudioOnly()
220 assertConnectionState(connection, Connection.STATE_ACTIVE); in testAnswerIncomingCallAudioOnly()
239 assertConnectionState(connection, Connection.STATE_DISCONNECTED); in testIncomingCallFromBlockedNumber_IsRejected()
269 assertConnectionState(connection, Connection.STATE_RINGING); in testAnswerIncomingCallAsVideo_SendsCorrectVideoState()
274 assertConnectionState(connection, Connection.STATE_ACTIVE); in testAnswerIncomingCallAsVideo_SendsCorrectVideoState()
292 assertConnectionState(connection, Connection.STATE_RINGING); in testRejectIncomingCall()
297 assertConnectionState(connection, Connection.STATE_DISCONNECTED); in testRejectIncomingCall()
314 assertConnectionState(connection, Connection.STATE_RINGING); in testRejectIncomingCallWithMessage()
319 assertConnectionState(connection, Connection.STATE_DISCONNECTED); in testRejectIncomingCallWithMessage()
DRemoteConnectionTest.java71 assertConnectionState(mConnection, Connection.STATE_ACTIVE); in testRemoteConnectionOutgoingCall()
73 assertConnectionState(mRemoteConnection, Connection.STATE_ACTIVE); in testRemoteConnectionOutgoingCall()
77 assertConnectionState(mConnection, Connection.STATE_HOLDING); in testRemoteConnectionOutgoingCall()
79 assertConnectionState(mRemoteConnection, Connection.STATE_HOLDING); in testRemoteConnectionOutgoingCall()
83 assertConnectionState(mConnection, Connection.STATE_ACTIVE); in testRemoteConnectionOutgoingCall()
85 assertConnectionState(mRemoteConnection, Connection.STATE_ACTIVE); in testRemoteConnectionOutgoingCall()
89 assertConnectionState(mConnection, Connection.STATE_DISCONNECTED); in testRemoteConnectionOutgoingCall()
91 assertConnectionState(mRemoteConnection, Connection.STATE_DISCONNECTED); in testRemoteConnectionOutgoingCall()
104 assertConnectionState(mConnection, Connection.STATE_RINGING); in testRemoteConnectionIncomingCallAccept()
106 assertConnectionState(mRemoteConnection, Connection.STATE_RINGING); in testRemoteConnectionIncomingCallAccept()
[all …]
DMissedCallTest.java69 assertConnectionState(connection, Connection.STATE_RINGING); in testMissedCall_NotifyDialer()
DConferenceTest.java85 assertConnectionState(mConferenceObject.getConnections().get(0), Connection.STATE_ACTIVE); in testConferenceCreate()
86 assertConnectionState(mConferenceObject.getConnections().get(1), Connection.STATE_ACTIVE); in testConferenceCreate()
DBaseTelecomTestWithMockServices.java408 assertConnectionState(connection, Connection.STATE_RINGING); in setAndVerifyConnectionForIncomingCall()
700 void assertConnectionState(final Connection connection, final int state) { in assertConnectionState() method in BaseTelecomTestWithMockServices