Interface BaseTestResult

Result of running tests against the original, unmodified source code. Used as baseline for comparison with mutant test results.

interface BaseTestResult {
    passedList: boolean[];
    testSuites: TestSuites;
}

Properties

passedList: boolean[]
testSuites: TestSuites