Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23083f3c authored by Brad Ebinger's avatar Brad Ebinger Committed by Gerrit Code Review
Browse files

Merge "Update Tests to include new ISipTransport Definition"

parents f026a1cb 8fc463e8
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -19,7 +19,12 @@ package com.android.ims;
import static org.junit.Assert.assertEquals;

import android.os.Parcel;
import android.os.RemoteException;
import android.telephony.ims.DelegateRequest;
import android.telephony.ims.ImsService;
import android.telephony.ims.aidl.ISipDelegate;
import android.telephony.ims.aidl.ISipDelegateMessageCallback;
import android.telephony.ims.aidl.ISipDelegateStateCallback;
import android.telephony.ims.aidl.ISipTransport;
import android.telephony.ims.feature.ImsFeature;
import android.telephony.ims.feature.MmTelFeature;
@@ -40,7 +45,14 @@ public class ImsFeatureContainerTest {
    private ImsConfigImplBase mImsConfig = new ImsConfigImplBase();
    private ImsRegistrationImplBase mImsReg = new ImsRegistrationImplBase();
    private ISipTransport mSipTransport = new ISipTransport.Stub() {
        // Add implementation once available
        @Override
        public void createSipDelegate(DelegateRequest request, ISipDelegateStateCallback dc,
                ISipDelegateMessageCallback mc) {
        }

        @Override
        public void destroySipDelegate(ISipDelegate delegate, int reason) {
        }
    };

    @Test