public interface

ITestRunListener

 androidx.test.orchestrator.listeners.result.ITestRunListener

Subclasses:

TestRunResult

Gradle dependencies

compile group: 'androidx.test', name: 'runner', version: '1.5.0-alpha03'

  • groupId: androidx.test
  • artifactId: runner
  • version: 1.5.0-alpha03

Artifact androidx.test:runner:1.5.0-alpha03 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.test:runner com.android.support.test:runner

Androidx class mapping:

androidx.test.orchestrator.listeners.result.ITestRunListener android.support.test.orchestrator.listeners.result.ITestRunListener

Overview

Receives event notifications during instrumentation test runs.

Patterned after org.junit.runner.notification.RunListener

The sequence of calls will be:

  • testRunStarted
  • testStarted
  • [testFailed]
  • [testAssumptionFailure]
  • [testIgnored]
  • testEnded
  • ....
  • [testRunFailed]
  • testRunEnded

This is a copy of com.android.ddmlib.testrunner.ITestRunListener.

Summary

Methods
public voidtestAssumptionFailure(TestIdentifier test, java.lang.String trace)

Called when an atomic test flags that it assumes a condition that is false

public voidtestEnded(TestIdentifier test, java.util.Map<java.lang.String, java.lang.String> testMetrics)

Reports the execution end of an individual test case.

public voidtestFailed(TestIdentifier test, java.lang.String trace)

Reports the failure of a individual test case.

public voidtestIgnored(TestIdentifier test)

Called when a test will not be run, generally because a test method is annotated with org.junit.Ignore.

public voidtestRunEnded(long elapsedTime, java.util.Map<java.lang.String, java.lang.String> runMetrics)

Reports end of test run.

public voidtestRunFailed(java.lang.String errorMessage)

Reports test run failed to complete due to a fatal error.

public voidtestRunStarted(java.lang.String runName, int testCount)

Reports the start of a test run.

public voidtestRunStopped(long elapsedTime)

Reports test run stopped before completion due to a user request.

public voidtestStarted(TestIdentifier test)

Reports the start of an individual test case.

Methods

public void testRunStarted(java.lang.String runName, int testCount)

Reports the start of a test run.

Parameters:

runName: the test run name
testCount: total number of tests in test run

public void testStarted(TestIdentifier test)

Reports the start of an individual test case.

Parameters:

test: identifies the test

public void testFailed(TestIdentifier test, java.lang.String trace)

Reports the failure of a individual test case.

Will be called between testStarted and testEnded.

Parameters:

test: identifies the test
trace: stack trace of failure

public void testAssumptionFailure(TestIdentifier test, java.lang.String trace)

Called when an atomic test flags that it assumes a condition that is false

Parameters:

test: identifies the test
trace: stack trace of failure

public void testIgnored(TestIdentifier test)

Called when a test will not be run, generally because a test method is annotated with org.junit.Ignore.

Parameters:

test: identifies the test

public void testEnded(TestIdentifier test, java.util.Map<java.lang.String, java.lang.String> testMetrics)

Reports the execution end of an individual test case.

If ITestRunListener.testFailed(TestIdentifier, String) was not invoked, this test passed. Also returns any key/value metrics which may have been emitted during the test case's execution.

Parameters:

test: identifies the test
testMetrics: a java.util.Map of the metrics emitted

public void testRunFailed(java.lang.String errorMessage)

Reports test run failed to complete due to a fatal error.

Parameters:

errorMessage: java.lang.String describing reason for run failure.

public void testRunStopped(long elapsedTime)

Reports test run stopped before completion due to a user request.

TODO: currently unused, consider removing

Parameters:

elapsedTime: device reported elapsed time, in milliseconds

public void testRunEnded(long elapsedTime, java.util.Map<java.lang.String, java.lang.String> runMetrics)

Reports end of test run.

Parameters:

elapsedTime: device reported elapsed time, in milliseconds
runMetrics: key-value pairs reported at the end of a test run

Source

/*
 * Copyright (C) 2008 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.orchestrator.listeners.result;

import java.util.Map;

/**
 * Receives event notifications during instrumentation test runs.
 *
 * <p>Patterned after org.junit.runner.notification.RunListener
 *
 * <p>The sequence of calls will be:
 *
 * <ul>
 *   <li>testRunStarted
 *   <li>testStarted
 *   <li>[testFailed]
 *   <li>[testAssumptionFailure]
 *   <li>[testIgnored]
 *   <li>testEnded
 *   <li>....
 *   <li>[testRunFailed]
 *   <li>testRunEnded
 * </ul>
 *
 * <p>This is a copy of {@code com.android.ddmlib.testrunner.ITestRunListener}.
 */
public interface ITestRunListener {

  /**
   * Reports the start of a test run.
   *
   * @param runName the test run name
   * @param testCount total number of tests in test run
   */
  void testRunStarted(String runName, int testCount);

  /**
   * Reports the start of an individual test case.
   *
   * @param test identifies the test
   */
  void testStarted(TestIdentifier test);

  /**
   * Reports the failure of a individual test case.
   *
   * <p>Will be called between testStarted and testEnded.
   *
   * @param test identifies the test
   * @param trace stack trace of failure
   */
  void testFailed(TestIdentifier test, String trace);

  /**
   * Called when an atomic test flags that it assumes a condition that is false
   *
   * @param test identifies the test
   * @param trace stack trace of failure
   */
  void testAssumptionFailure(TestIdentifier test, String trace);

  /**
   * Called when a test will not be run, generally because a test method is annotated with
   * org.junit.Ignore.
   *
   * @param test identifies the test
   */
  void testIgnored(TestIdentifier test);

  /**
   * Reports the execution end of an individual test case.
   *
   * <p>If {@link #testFailed} was not invoked, this test passed. Also returns any key/value metrics
   * which may have been emitted during the test case's execution.
   *
   * @param test identifies the test
   * @param testMetrics a {@link Map} of the metrics emitted
   */
  void testEnded(TestIdentifier test, Map<String, String> testMetrics);

  /**
   * Reports test run failed to complete due to a fatal error.
   *
   * @param errorMessage {@link String} describing reason for run failure.
   */
  void testRunFailed(String errorMessage);

  /**
   * Reports test run stopped before completion due to a user request.
   *
   * <p>TODO: currently unused, consider removing
   *
   * @param elapsedTime device reported elapsed time, in milliseconds
   */
  void testRunStopped(long elapsedTime);

  /**
   * Reports end of test run.
   *
   * @param elapsedTime device reported elapsed time, in milliseconds
   * @param runMetrics key-value pairs reported at the end of a test run
   */
  void testRunEnded(long elapsedTime, Map<String, String> runMetrics);
}