vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface RunTestsResult

    interface RunTestsResult {
        apexLogId: null | string;
        codeCoverage: CodeCoverageResult[];
        codeCoverageWarnings: CodeCoverageWarning[];
        failures: RunTestFailure[];
        flowCoverage: any[];
        flowCoverageWarnings: any[];
        numFailures: number;
        numTestsRun: number;
        successes: RunTestSuccess[];
        totalTime: number;
    }
    Index

    Properties

    apexLogId: null | string

    The ID of an ApexLog object that is created at the end of a test run. The ApexLog object is created if there is an active trace flag on the user running an Apex test, or on a class or trigger being executed.

    codeCoverage: CodeCoverageResult[]

    An array of one or more CodeCoverageResult objects that contains the details of the code coverage for the specified unit tests.

    codeCoverageWarnings: CodeCoverageWarning[]

    An array of one or more code coverage warnings for the test run. The results include both the total number of lines that could have been executed, as well as the number, line, and column positions of code that was not executed.

    failures: RunTestFailure[]

    An array of one or more RunTestFailure objects that contain information about the unit test failures, if there are any.

    flowCoverage: any[]
    flowCoverageWarnings: any[]
    numFailures: number
    numTestsRun: number
    successes: RunTestSuccess[]

    An array of one or more RunTestSuccess objects that contain information about successes, if there are any.

    totalTime: number