import { indentText } from '@/application/Common/Text/IndentText'; export class TestExecutionDetailsLogger { public logTestSectionStartDelimiter(): void { this.logSectionDelimiterLine(); } public logTestSectionEndDelimiter(): void { this.logSectionDelimiterLine(); } public logLabeledInformation( label: string, detailedInformation: string, ): void { console.log([ `${label}:`, indentText(detailedInformation), ].join('\n')); } private logSectionDelimiterLine(): void { const horizontalLine = '─'.repeat(40); console.log(horizontalLine); } }