UNPKG

@sectester/reporter

Version:

Provide an abstraction for generating test results as part of the particular test frameworks.

11 lines (10 loc) 344 B
import type { TestReport } from '../types'; import { type Issue } from '@sectester/scan'; export declare class JUnitReportBuilder { private readonly issues; private readonly testFilePath; constructor(issues: Issue[], testFilePath: string); build(): TestReport; private createTestSuite; private convertIssueToTestCase; }