Merge "Add shadow and wrapper classes" into oc-mr1-dev am: 1b2408433a

am: 04c28ab23c

Change-Id: If01fbb956c5171a1fe9b64794e80a8b734ca6b54
This commit is contained in:
jackqdyulei
2017-07-31 23:52:47 +00:00
committed by android-build-merger
5 changed files with 167 additions and 3 deletions

View File

@@ -0,0 +1,44 @@
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.settings.testutils.shadow;
import android.accessibilityservice.AccessibilityServiceInfo;
import android.content.ComponentName;
import android.view.accessibility.AccessibilityManager;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
import java.util.ArrayList;
import java.util.List;
@Implements(AccessibilityManager.class)
public class ShadowAccessibilityManager {
private static final List<AccessibilityServiceInfo> mInstalledAccessibilityList =
new ArrayList<>();
public static void addAccessibilityService(String serviceName) {
AccessibilityServiceInfo serviceInfo = new AccessibilityServiceInfo();
serviceInfo.setComponentName(ComponentName.unflattenFromString(serviceName));
mInstalledAccessibilityList.add(serviceInfo);
}
@Implementation
public List<AccessibilityServiceInfo> getInstalledAccessibilityServiceList() {
return mInstalledAccessibilityList;
}
}

View File

@@ -0,0 +1,37 @@
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.settings.testutils.shadow;
import android.content.ComponentName;
import com.android.settings.applications.AccessibilityServiceInfoWrapperImpl;
import org.robolectric.annotation.Implementation;
import org.robolectric.annotation.Implements;
@Implements(AccessibilityServiceInfoWrapperImpl.class)
public class ShadowAccessibilityServiceInfoWrapperImpl {
private static ComponentName sComponentName;
public static void setComponentName(String componentName) {
sComponentName = ComponentName.unflattenFromString(componentName);;
}
@Implementation
public ComponentName getComponentName() {
return sComponentName;
}
}