public interface

IAutomationSupport

 androidx.test.uiautomator.IAutomationSupport

Gradle dependencies

compile group: 'androidx.test.uiautomator', name: 'uiautomator', version: '2.2.0'

  • groupId: androidx.test.uiautomator
  • artifactId: uiautomator
  • version: 2.2.0

Artifact androidx.test.uiautomator:uiautomator:2.2.0 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test.uiautomator:uiautomator com.android.support.test.uiautomator:uiautomator

Androidx class mapping:

androidx.test.uiautomator.IAutomationSupport android.support.test.uiautomator.IAutomationSupport

Overview

Provides auxiliary support for running test cases

Summary

Methods
public voidsendStatus(int resultCode, Bundle status)

Allows the running test cases to send out interim status

Methods

public void sendStatus(int resultCode, Bundle status)

Allows the running test cases to send out interim status

Parameters:

resultCode:
status: status report, consisting of key value pairs

Since: API Level 16

Source

/*
 * Copyright (C) 2012 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 androidx.test.uiautomator;

import android.os.Bundle;

/**
 * Provides auxiliary support for running test cases
 *
 * @since API Level 16
 */
public interface IAutomationSupport {

    /**
     * Allows the running test cases to send out interim status
     *
     * @param resultCode
     * @param status status report, consisting of key value pairs
     * @since API Level 16
     */
    public void sendStatus(int resultCode, Bundle status);

}