apex-mutation-testing
Version:
Apex mutation testing plugin
10 lines (9 loc) • 394 B
TypeScript
import { TestResult, TestService } from '@salesforce/apex-node';
import { Connection } from '@salesforce/core';
export declare class ApexTestRunner {
protected readonly testService: TestService;
constructor(connection: Connection);
getCoveredLines(testClassName: string): Promise<Set<number>>;
run(testClassName: string): Promise<TestResult>;
private runTestAsynchronous;
}