1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Add UxPerfUiAutomation class

UxPerfUiAutomation contains methods specific to UX performance testing.
This commit is contained in:
John Richardson 2016-07-19 14:21:36 +01:00
parent 550a0db61a
commit 25172fb027
18 changed files with 56 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -16,6 +16,12 @@
# Build and return appropriate exit code if failed
ant build
exit_code=$?
if [ $exit_code -ne 0 ]; then
echo "ERROR: 'ant build' exited with code $exit_code"
exit $exit_code
fi
cp bin/classes/com/arm/wlauto/uiauto/BaseUiAutomation.class ../../common/android
cp bin/classes/com/arm/wlauto/uiauto/*.class ../../common/android

View File

@ -0,0 +1,49 @@
/* Copyright 2013-2016 ARM Limited
*
* 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.arm.wlauto.uiauto;
import java.util.logging.Logger;
public class UxPerfUiAutomation extends BaseUiAutomation {
private Logger logger = Logger.getLogger(UxPerfUiAutomation.class.getName());
public enum GestureType { UIDEVICE_SWIPE, UIOBJECT_SWIPE, PINCH };
public static class GestureTestParams {
public GestureType gestureType;
public Direction gestureDirection;
public PinchType pinchType;
public int percent;
public int steps;
public GestureTestParams(GestureType gesture, Direction direction, int steps) {
this.gestureType = gesture;
this.gestureDirection = direction;
this.pinchType = PinchType.NULL;
this.steps = steps;
this.percent = 0;
}
public GestureTestParams(GestureType gesture, PinchType pinchType, int steps, int percent) {
this.gestureType = gesture;
this.gestureDirection = Direction.NULL;
this.pinchType = pinchType;
this.steps = steps;
this.percent = percent;
}
}
}