UNPKG

@abaplint/transpiler

Version:
17 lines (16 loc) 516 B
import * as abaplint from "@abaplint/core"; /** @uniqueItems true */ export type TestMethodList = { /** @pattern ^[a-zA-Z0-9_\/]+$ */ object: string; /** @pattern ^[a-zA-Z0-9_\/]+$ */ class: string; /** @pattern ^[a-zA-Z0-9_\/]+$ */ method: string; note?: string; }[]; export declare class UnitTest { unitTestScriptOpen(reg: abaplint.IRegistry, _skip?: TestMethodList): string; private getSortedTests; unitTestScript(reg: abaplint.IRegistry, skip?: TestMethodList): string; }