UNPKG

@syntest/core

Version:

The common core of the SynTest Framework

57 lines 1.12 kB
/** * Runtime variables that can be recorded. */ export declare enum RuntimeVariable { /** * General */ CONFIGURATION = 0, SEED = 1, SUBJECT = 2, VERSION = 3, /** * Search */ ALGORITHM = 4, EVALUATIONS = 5, ITERATIONS = 6, PROBE_ENABLED = 7, CONSTANT_POOL_ENABLED = 8, /** * Objectives */ COVERED_OBJECTIVES = 9, OBJECTIVE_VALUE = 10, TOTAL_OBJECTIVES = 11, /** * Coverage */ BRANCH_COVERAGE = 12, FUNCTION_COVERAGE = 13, LINE_COVERAGE = 14, PROBE_COVERAGE = 15, COVERAGE = 16, COVERED_BRANCHES = 17, COVERED_EXCEPTIONS = 18, COVERED_FUNCTIONS = 19, COVERED_LINES = 20, COVERED_PROBES = 21, TOTAL_BRANCHES = 22, TOTAL_FUNCTIONS = 23, TOTAL_LINES = 24, TOTAL_PROBES = 25, /** * Time */ INITIALIZATION_TIME = 26, SEARCH_TIME = 27, TOTAL_TIME = 28, INSTRUMENTATION_TIME = 29, TYPE_RESOLVING_TIME = 30, /** * Archive */ ARCHIVE_SIZE = 31, MINIMIZED_SIZE = 32 } //# sourceMappingURL=RuntimeVariable.d.ts.map