stryker
Version:
The extendable JavaScript mutation testing framework
19 lines • 590 B
TypeScript
import { MutationScoreThresholds } from 'stryker-api/core';
import { ScoreResult } from 'stryker-api/report';
/**
* Represents a clear text table for mutation score
*/
export default class ClearTextScoreTable {
private readonly score;
private readonly columns;
constructor(score: ScoreResult, thresholds: MutationScoreThresholds);
private drawBorder;
private drawHeader;
private drawRow;
private drawValues;
/**
* Returns a string with the score results drawn in a table.
*/
draw(): string;
}
//# sourceMappingURL=ClearTextScoreTable.d.ts.map