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/toolresults:v1beta3.ts";

A test of an Android application that can control an Android component independently of its normal lifecycle. See for more information on types of Android tests.

interface AndroidInstrumentationTest {
testPackageId?: string;
testRunnerClass?: string;
testTargets?: string[];
useOrchestrator?: boolean;
}

§Properties

§
testPackageId?: string
[src]

The java package for the test to be executed. Required

§
testRunnerClass?: string
[src]

The InstrumentationTestRunner class. Required

§
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.

§
useOrchestrator?: boolean
[src]

The flag indicates whether Android Test Orchestrator will be used to run test or not.