1 /*
2  * Copyright (C) 2018 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 
17 package com.android.settings.testutils.shadow;
18 
19 import android.net.wifi.p2p.WifiP2pManager;
20 
21 import org.robolectric.annotation.Implementation;
22 import org.robolectric.annotation.Implements;
23 import org.robolectric.annotation.Resetter;
24 
25 /**
26  * Shadow class for WifiP2pManager.
27  */
28 @Implements(value = WifiP2pManager.class)
29 public class ShadowWifiP2pManager extends org.robolectric.shadows.ShadowWifiP2pManager {
30 
31     private static int sFactoryResetCount;
32 
33     @Implementation
factoryReset(WifiP2pManager.Channel c, WifiP2pManager.ActionListener listener)34     protected void factoryReset(WifiP2pManager.Channel c, WifiP2pManager.ActionListener listener) {
35         if (c != null) {
36             sFactoryResetCount++;
37         } else {
38             throw new IllegalArgumentException("channel must be non-null.");
39         }
40     }
41 
42     @Resetter
reset()43     public static void reset() {
44         sFactoryResetCount = 0;
45     }
46 
47     /**
48      * Return the count of factoryReset called.
49      *
50      * @return the count of factoryReset called.
51      */
getFactoryResetCount()52     public static int getFactoryResetCount() {
53         return sFactoryResetCount;
54     }
55 }
56