({
label,
title,
}: {
label?: string;
title: string;
})
| 81 | } |
| 82 | |
| 83 | private writeOutputTitle({ |
| 84 | label, |
| 85 | title, |
| 86 | }: { |
| 87 | label?: string; |
| 88 | title: string; |
| 89 | }): void { |
| 90 | let outputTitle: string; |
| 91 | if (label) { |
| 92 | outputTitle = `${this.UB_PREFIX} ${label} ${title}\n`; |
| 93 | } else { |
| 94 | outputTitle = `${this.UB_PREFIX} ${title}\n`; |
| 95 | } |
| 96 | this.writeToStdOut(outputTitle); |
| 97 | } |
| 98 | |
| 99 | private writeOptionalOutputBody(bodyLines?: string[]): void { |
| 100 | if (!bodyLines) { |
no test coverage detected