Home
last modified time | relevance | path

Searched refs:assertConnectionState (Results 1 – 6 of 6) 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.java199 assertConnectionState(connection, Connection.STATE_RINGING); in testAnswerIncomingCallAudioOnly()
204 assertConnectionState(connection, Connection.STATE_ACTIVE); in testAnswerIncomingCallAudioOnly()
220 assertConnectionState(connection, Connection.STATE_RINGING); in testAnswerIncomingCallAsVideo_SendsCorrectVideoState()
225 assertConnectionState(connection, Connection.STATE_ACTIVE); in testAnswerIncomingCallAsVideo_SendsCorrectVideoState()
243 assertConnectionState(connection, Connection.STATE_RINGING); in testRejectIncomingCall()
248 assertConnectionState(connection, Connection.STATE_DISCONNECTED); in testRejectIncomingCall()
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 …]
DConferenceTest.java77 assertConnectionState(mConferenceObject.getConnections().get(0), Connection.STATE_ACTIVE); in testConferenceCreate()
78 assertConnectionState(mConferenceObject.getConnections().get(1), Connection.STATE_ACTIVE); in testConferenceCreate()
DBaseTelecomTestWithMockServices.java357 assertConnectionState(connection, Connection.STATE_RINGING); in setAndVerifyConnectionForIncomingCall()
612 void assertConnectionState(final Connection connection, final int state) { in assertConnectionState() method in BaseTelecomTestWithMockServices