@marianfoo/adt-ls - v0.4.1
    Preparing search index...

    Interface Quality

    Quality & test surface (the quality namespace). All reads.

    interface Quality {
        listAtcVariants(
            ref: ObjectRef,
            opts?: { query?: string },
        ): Promise<unknown>;
        runAtc(
            ref: ObjectRef,
            opts?: { checkVariant?: string; timeoutMs?: number },
        ): Promise<unknown>;
        runUnitTestsWithCoverage(
            ref: ObjectRef,
            opts?: { timeoutMs?: number },
        ): Promise<unknown>;
    }
    Index

    Methods

    • List the ATC check variants on the system (retrieved in the object's context).

      Parameters

      • ref: ObjectRef
      • Optionalopts: { query?: string }

      Returns Promise<unknown>

    • Run ABAP Test Cockpit static analysis — empty checkVariant = system default. Report-only, timeout-guarded.

      Parameters

      • ref: ObjectRef
      • Optionalopts: { checkVariant?: string; timeoutMs?: number }

      Returns Promise<unknown>

    • Run ABAP Unit tests WITH code coverage → { status, result, coverage }.

      Parameters

      • ref: ObjectRef
      • Optionalopts: { timeoutMs?: number }

      Returns Promise<unknown>