UNPKG

apex-mutation-testing

Version:

Apex mutation testing plugin

23 lines (22 loc) 528 B
export interface ApexMutationTestResult { sourceFile: string; sourceFileContent: string; testFile: string; mutants: { id: string; mutatorName: string; status: 'Killed' | 'Survived' | 'NoCoverage'; location: { start: { line: number; column: number; }; end: { line: number; column: number; }; }; replacement: string; original: string; }[]; }