Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AndroidInstrumentationTest

import type { AndroidInstrumentationTest } from "https://googleapis.deno.dev/v1/testing:v1.ts";

A test of an Android application that can control an Android component independently of its normal lifecycle. Android instrumentation tests run an application APK and test APK inside the same process on a virtual or physical AndroidDevice. They also specify a test runner class, such as com.google.GoogleTestRunner, which can vary on the specific instrumentation framework chosen. See for more information on types of Android tests.

interface AndroidInstrumentationTest {
appApk?: FileReference;
appBundle?: AppBundle;
appPackageId?: string;
orchestratorOption?: "ORCHESTRATOR_OPTION_UNSPECIFIED" | "USE_ORCHESTRATOR" | "DO_NOT_USE_ORCHESTRATOR";
shardingOption?: ShardingOption;
testApk?: FileReference;
testPackageId?: string;
testRunnerClass?: string;
testTargets?: string[];
}

§Properties

§

The APK for the application under test.

§
appBundle?: AppBundle
[src]

A multi-apk app bundle for the application under test.

§
appPackageId?: string
[src]

The java package for the application under test. The default value is determined by examining the application's manifest.

§
orchestratorOption?: "ORCHESTRATOR_OPTION_UNSPECIFIED" | "USE_ORCHESTRATOR" | "DO_NOT_USE_ORCHESTRATOR"
[src]

The option of whether running each test within its own invocation of instrumentation with Android Test Orchestrator or not. ** Orchestrator is only compatible with AndroidJUnitRunner version 1.1 or higher! ** Orchestrator offers the following benefits: - No shared state - Crashes are isolated - Logs are scoped per test See for more information about Android Test Orchestrator. If not set, the test will be run without the orchestrator.

§
shardingOption?: ShardingOption
[src]

The option to run tests in multiple shards in parallel.

§

Required. The APK containing the test code to be executed.

§
testPackageId?: string
[src]

The java package for the test to be executed. The default value is determined by examining the application's manifest.

§
testRunnerClass?: string
[src]

The InstrumentationTestRunner class. The default value is determined by examining the application's manifest.

§
testTargets?: string[]
[src]

Each target must be fully qualified with the package name or class name, in one of these formats: - "package package_name" - "class package_name.class_name" - "class package_name.class_name#method_name" If empty, all targets in the module will be run.