(metric: StepMetricInput)
| 183 | } |
| 184 | |
| 185 | public addStepMetric(metric: StepMetricInput): void { |
| 186 | const stepMetric: StepMetric = { ...metric, platform: this.runtimePlatform }; |
| 187 | this.provider.reportStepMetric?.(stepMetric); |
| 188 | } |
| 189 | |
| 190 | public wasCheckedOut(): boolean { |
| 191 | return this.didCheckOut; |
no test coverage detected