(path: string)
| 132 | } |
| 133 | |
| 134 | public record(path: string): any { |
| 135 | if (!this.outOfBandRecord || (this.outOfBandRecord.length === 0)) { |
| 136 | return undefined; |
| 137 | } |
| 138 | return MINode.valueOf(this.outOfBandRecord[0].output, path); |
| 139 | } |
| 140 | |
| 141 | public result(path: string): any { |
| 142 | if (!this.resultRecords) { |
no test coverage detected