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

Commit 8fc463e8 authored by Brad Ebinger's avatar Brad Ebinger
Browse files

Update Tests to include new ISipTransport Definition

Test: atest ImsCommonTests
Change-Id: If3001b1bbadc696bf84187b88a40a4069bdb0a12
parent 0eafb70e
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