TestImsServiceControllerAdapter.java revision ebe7395407ab7a006daec0bb797557b9ad76fc52
1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.internal.telephony.ims;
18
19import android.os.RemoteException;
20
21import com.android.ims.internal.IImsServiceController;
22
23import static org.mockito.Mockito.spy;
24
25/**
26 * Test base implementation of the ImsServiceController
27 */
28
29public class TestImsServiceControllerAdapter {
30
31    public class ImsServiceControllerBinder extends IImsServiceController.Stub {
32
33        @Override
34        public void createImsFeature(int subId, int feature) throws RemoteException {
35            TestImsServiceControllerAdapter.this.createImsFeature(subId, feature);
36        }
37
38        @Override
39        public void removeImsFeature(int subId, int feature) throws RemoteException {
40            TestImsServiceControllerAdapter.this.removeImsFeature(subId, feature);
41        }
42    }
43
44    private ImsServiceControllerBinder mBinder;
45
46    public IImsServiceController getBinder() {
47        if (mBinder == null) {
48            mBinder = spy(new ImsServiceControllerBinder());
49        }
50
51        return mBinder;
52    }
53
54    public void createImsFeature(int subId, int feature) throws RemoteException {
55    }
56
57    public void removeImsFeature(int subId, int feature) throws RemoteException {
58    }
59}
60