Struct google_testing1::IosXcTest[][src]

pub struct IosXcTest {
    pub xcode_version: Option<String>,
    pub xctestrun: Option<FileReference>,
    pub tests_zip: Option<FileReference>,
}

A test of an iOS application that uses the XCTest framework. Xcode supports the option to "build for testing", which generates an .xctestrun file that contains a test specification (arguments, test methods, etc). This test type accepts a zip file containing the .xctestrun file and the corresponding contents of the Build/Products directory that contains all the binaries needed to run the tests.

This type is not used in any activity, and only used as part of another schema.

Fields

Optional. The Xcode version that should be used for the test. Use the EnvironmentDiscoveryService to get supported options. Defaults to the latest Xcode version Firebase Test Lab supports.

Optional. An .xctestrun file that will override the .xctestrun file in the tests zip. Because the .xctestrun file contains environment variables along with test methods to run and/or ignore, this can be useful for sharding tests. Default is taken from the tests zip.

Required. The .zip containing the .xctestrun file and the contents of the DerivedData/Build/Products directory. The .xctestrun file in this zip is ignored if the xctestrun field is specified.

Trait Implementations

impl Default for IosXcTest
[src]

Returns the "default value" for a type. Read more

impl Clone for IosXcTest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IosXcTest
[src]

Formats the value using the given formatter. Read more

impl Part for IosXcTest
[src]

Auto Trait Implementations

impl Send for IosXcTest

impl Sync for IosXcTest