Skip to content

Commit

Permalink
Fix swiftlint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Mar 9, 2025
1 parent c308d1b commit 158c47c
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions Tests/ProcessCoverageReport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,36 +6,36 @@

import Foundation

struct Function: Codable {
let coveredLines: Int
let executableLines: Int
let executionCount: Int
let lineCoverage: Double
let lineNumber: Int
let name: String
}

struct File: Codable {
let coveredLines: Int
let executableLines: Int
let functions: [Function]
let lineCoverage: Double
let name: String
let path: String
}

struct Target: Codable {
let buildProductPath: String
let coveredLines: Int
let executableLines: Int
let files: [File]
}

struct CoverageReport: Codable {
let coveredLines: Int
let executableLines: Int
let lineCoverage: Double
let targets: [Target]

struct Target: Codable {
let buildProductPath: String
let coveredLines: Int
let executableLines: Int
let files: [File]

struct File: Codable {
let coveredLines: Int
let executableLines: Int
let functions: [Function]
let lineCoverage: Double
let name: String
let path: String

struct Function: Codable {
let coveredLines: Int
let executableLines: Int
let executionCount: Int
let lineCoverage: Double
let lineNumber: Int
let name: String
}
}
}
}

func loadCoverageReport(from filePath: String) -> CoverageReport? {
Expand Down

0 comments on commit 158c47c

Please sign in to comment.