Struct google_testing1::api::AndroidInstrumentationTest [−][src]
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.
This type is not used in any activity, and only used as part of another schema.
Fields
app_apk: Option<FileReference>The APK for the application under test.
app_bundle: Option<AppBundle>A multi-apk app bundle for the application under test.
app_package_id: Option<String>The java package for the application under test. The default value is determined by examining the application's manifest.
orchestrator_option: Option<String>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.0 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.
sharding_option: Option<ShardingOption>The option to run tests in multiple shards in parallel.
test_apk: Option<FileReference>Required. The APK containing the test code to be executed.
test_package_id: Option<String>The java package for the test to be executed. The default value is determined by examining the application's manifest.
test_runner_class: Option<String>The InstrumentationTestRunner class. The default value is determined by examining the application's manifest.
test_targets: Option<Vec<String>>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.
Trait Implementations
impl Clone for AndroidInstrumentationTest[src]
fn clone(&self) -> AndroidInstrumentationTest[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for AndroidInstrumentationTest[src]
impl Default for AndroidInstrumentationTest[src]
impl<'de> Deserialize<'de> for AndroidInstrumentationTest[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for AndroidInstrumentationTest[src]
impl Serialize for AndroidInstrumentationTest[src]
Auto Trait Implementations
impl RefUnwindSafe for AndroidInstrumentationTest[src]
impl Send for AndroidInstrumentationTest[src]
impl Sync for AndroidInstrumentationTest[src]
impl Unpin for AndroidInstrumentationTest[src]
impl UnwindSafe for AndroidInstrumentationTest[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,