|
3 | 3 | // xcparse
|
4 | 4 | //
|
5 | 5 | // Created by Alex Botkin on 8/13/19.
|
6 |
| -// Copyright © 2019 ChargePoint, Inc. All rights reserved. |
| 6 | +// Copyright © 2021 ChargePoint, Inc. All rights reserved. |
7 | 7 | //
|
8 | 8 |
|
9 | 9 | import Foundation
|
@@ -118,11 +118,15 @@ enum XCResultTypeFamily: String, ClassFamily {
|
118 | 118 | case ActionSDKRecord
|
119 | 119 | case ActionTestActivitySummary
|
120 | 120 | case ActionTestAttachment
|
| 121 | + case ActionTestConfiguration |
| 122 | + case ActionTestExpectedFailure |
121 | 123 | case ActionTestFailureSummary
|
122 | 124 | case ActionTestMetadata
|
| 125 | + case ActionTestNoticeSummary |
123 | 126 | case ActionTestPerformanceMetricSummary
|
124 | 127 | case ActionTestPlanRunSummaries
|
125 | 128 | case ActionTestPlanRunSummary
|
| 129 | + case ActionTestRepetitionPolicySummary |
126 | 130 | case ActionTestSummary
|
127 | 131 | case ActionTestSummaryGroup
|
128 | 132 | case ActionTestSummaryIdentifiableObject
|
@@ -189,16 +193,24 @@ enum XCResultTypeFamily: String, ClassFamily {
|
189 | 193 | return XCParseCore.ActionTestActivitySummary.self
|
190 | 194 | case .ActionTestAttachment:
|
191 | 195 | return XCParseCore.ActionTestAttachment.self
|
| 196 | + case .ActionTestConfiguration: |
| 197 | + return XCParseCore.ActionTestConfiguration.self |
| 198 | + case .ActionTestExpectedFailure: |
| 199 | + return XCParseCore.ActionTestExpectedFailure.self |
192 | 200 | case .ActionTestFailureSummary:
|
193 | 201 | return XCParseCore.ActionTestFailureSummary.self
|
194 | 202 | case .ActionTestMetadata:
|
195 | 203 | return XCParseCore.ActionTestMetadata.self
|
| 204 | + case .ActionTestNoticeSummary: |
| 205 | + return XCParseCore.ActionTestNoticeSummary.self |
196 | 206 | case .ActionTestPerformanceMetricSummary:
|
197 | 207 | return XCParseCore.ActionTestPerformanceMetricSummary.self
|
198 | 208 | case .ActionTestPlanRunSummaries:
|
199 | 209 | return XCParseCore.ActionTestPlanRunSummaries.self
|
200 | 210 | case .ActionTestPlanRunSummary:
|
201 | 211 | return XCParseCore.ActionTestPlanRunSummary.self
|
| 212 | + case .ActionTestRepetitionPolicySummary: |
| 213 | + return XCParseCore.ActionTestRepetitionPolicySummary.self |
202 | 214 | case .ActionTestSummary:
|
203 | 215 | return XCParseCore.ActionTestSummary.self
|
204 | 216 | case .ActionTestSummaryGroup:
|
|
0 commit comments