Interface MutantTestResult

Result of running tests against a mutated version of the code. Includes both test results and information about the applied mutation. If the test results are not provided, the mutant is considered to be killed.

interface MutantTestResult {
    mutant: MutantData;
    outcome: MutantOutcome;
    testSuites?: TestSuites;
}

Properties

mutant: MutantData
outcome: MutantOutcome
testSuites?: TestSuites