UNPKG

@syntest/core

Version:

The common core of the SynTest Framework

20 lines 694 B
import { Encoding } from "../search/Encoding"; import { StatisticsCollector } from "./StatisticsCollector"; import { RuntimeVariable } from "./RuntimeVariable"; /** * Writer for the coverage over time statistics. * * @author Mitchell Olsthoorn */ export declare class CoverageWriter<T extends Encoding> { protected VARIABLES: RuntimeVariable[]; protected EVENT_VARIABLES: RuntimeVariable[]; /** * Write the coverage statistics to file. * * @param collector The collector for the statistics * @param filePath The file path to write to */ write(collector: StatisticsCollector<T>, filePath: string): void; } //# sourceMappingURL=CoverageWriter.d.ts.map