CodeCoverageReportSummary

public struct CodeCoverageReportSummary : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The percentage of branches that are covered by your tests.

    Declaration

    Swift

    public let branchCoveragePercentage: Double?
  • The number of conditional branches that are covered by your tests.

    Declaration

    Swift

    public let branchesCovered: Int?
  • The number of conditional branches that are not covered by your tests.

    Declaration

    Swift

    public let branchesMissed: Int?
  • The percentage of lines that are covered by your tests.

    Declaration

    Swift

    public let lineCoveragePercentage: Double?
  • The number of lines that are covered by your tests.

    Declaration

    Swift

    public let linesCovered: Int?
  • The number of lines that are not covered by your tests.

    Declaration

    Swift

    public let linesMissed: Int?
  • Undocumented

    Declaration

    Swift

    public init(branchCoveragePercentage: Double? = nil, branchesCovered: Int? = nil, branchesMissed: Int? = nil, lineCoveragePercentage: Double? = nil, linesCovered: Int? = nil, linesMissed: Int? = nil)