LCOV parser
    Preparing search index...

    Interface SectionSummary

    interface SectionSummary {
        branches: Summary<BranchEntry>;
        functions: Summary<FunctionEntry>;
        lines: Summary<LineEntry>;
        name: string;
        path: string;
    }
    Index

    Properties

    branches: Summary<BranchEntry>

    The overall number of branches found and how often they were hit, with a list of instrumented branches.

    The overall number of functions found and how often they were hit, with a list of instrumented functions.

    The overall number of found lines and how often they were hit, with a list of instrumented lines.

    name: string

    The section name (also referred to as "test name").

    path: string

    The source file path.