Skip to content

ENUM

GenerationOptions.AutogeneratedWorkspaceSchemes

Contents

  • Cases
    • disabled
    • enabled(codeCoverageMode:testingOptions:testLanguage:testRegion:testScreenCaptureFormat:)
swift
public enum AutogeneratedWorkspaceSchemes: Codable, Equatable, Sendable

Contains options for autogenerated workspace schemes

Cases

disabled

swift
case disabled

Tuist will not automatically generate any schemes

enabled(codeCoverageMode:testingOptions:testLanguage:testRegion:testScreenCaptureFormat:)

swift
case enabled(
    codeCoverageMode: CodeCoverageMode = .disabled,
    testingOptions: TestingOptions = [],
    testLanguage: SchemeLanguage? = nil,
    testRegion: String? = nil,
    testScreenCaptureFormat: ScreenCaptureFormat? = nil
)

Tuist will generate schemes with the associated testing options

Released under the MIT License.