@@ -48,8 +48,17 @@ public struct LogManifestEntry: Encodable, Sendable {
4848 public let type : LogManifestEntryType
4949 public let statistics : LogManifestEntryStatistics
5050
51- public init ( uniqueIdentifier: String , title: String , scheme: String , fileName: String ,
52- timestampStart: TimeInterval , timestampEnd: TimeInterval , duration: Double , type: LogManifestEntryType , statistics: LogManifestEntryStatistics ) {
51+ public init (
52+ uniqueIdentifier: String ,
53+ title: String ,
54+ scheme: String ,
55+ fileName: String ,
56+ timestampStart: TimeInterval ,
57+ timestampEnd: TimeInterval ,
58+ duration: Double ,
59+ type: LogManifestEntryType ,
60+ statistics: LogManifestEntryStatistics
61+ ) {
5362 self . uniqueIdentifier = uniqueIdentifier
5463 self . title = title
5564 self . scheme = scheme
@@ -70,7 +79,13 @@ public struct LogManifestEntryStatistics: Encodable, Sendable {
7079 public let totalNumberOfTestFailures : Int
7180 public let totalNumberOfWarnings : Int
7281
73- public init ( totalNumberOfErrors: Int , totalNumberOfAnalyzerIssues: Int , highLevelStatus: String , totalNumberOfTestFailures: Int , totalNumberOfWarnings: Int ) {
82+ public init (
83+ totalNumberOfErrors: Int ,
84+ totalNumberOfAnalyzerIssues: Int ,
85+ highLevelStatus: String ,
86+ totalNumberOfTestFailures: Int ,
87+ totalNumberOfWarnings: Int
88+ ) {
7489 self . totalNumberOfErrors = totalNumberOfErrors
7590 self . totalNumberOfAnalyzerIssues = totalNumberOfAnalyzerIssues
7691 self . highLevelStatus = highLevelStatus
0 commit comments