Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x | const {cx_dynamic_check} = await import("./cx_dynamic_check.clas.mjs");
const {cx_root} = await import("./cx_root.clas.mjs");
// kernel_cx_assert.clas.abap
class kernel_cx_assert extends cx_dynamic_check {
static STATIC_SUPER = cx_dynamic_check;
static INTERNAL_TYPE = 'CLAS';
static INTERNAL_NAME = 'KERNEL_CX_ASSERT';
static IMPLEMENTED_INTERFACES = ["IF_MESSAGE","IF_MESSAGE"];
static ATTRIBUTES = {"ACTUAL": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "visibility": "U", "is_constant": " ", "is_class": " "},
"EXPECTED": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "visibility": "U", "is_constant": " ", "is_class": " "},
"MSG": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "visibility": "U", "is_constant": " ", "is_class": " "}};
static METHODS = {"CONSTRUCTOR": {"visibility": "U", "parameters": {"MSG": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " ", "parm_kind": "I", "type_name": "StringType"}, "PREVIOUS": {"type": () => {return new abap.types.ABAPObject({qualifiedName: "CX_ROOT", RTTIName: "\\CLASS=CX_ROOT"});}, "is_optional": " ", "parm_kind": "I", "type_name": "ObjectReferenceType"}, "EXPECTED": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " ", "parm_kind": "I", "type_name": "StringType"}, "ACTUAL": {"type": () => {return new abap.types.String({qualifiedName: "STRING"});}, "is_optional": " ", "parm_kind": "I", "type_name": "StringType"}}}};
constructor() {
const sup = super();
this.me = new abap.types.ABAPObject();
this.me.set(this);
this.INTERNAL_ID = abap.internalIdCounter++;
this.FRIENDS_ACCESS_INSTANCE = {
"SUPER": sup.FRIENDS_ACCESS_INSTANCE,
};
this.actual = new abap.types.String({qualifiedName: "STRING"});
this.expected = new abap.types.String({qualifiedName: "STRING"});
this.msg = new abap.types.String({qualifiedName: "STRING"});
}
async constructor_(INPUT) {
let msg = INPUT?.msg;
if (msg?.getQualifiedName === undefined || msg.getQualifiedName() !== "STRING") { msg = undefined; }
if (msg === undefined) { msg = new abap.types.String({qualifiedName: "STRING"}).set(INPUT.msg); }
let previous = new abap.types.ABAPObject({qualifiedName: "CX_ROOT", RTTIName: "\\CLASS=CX_ROOT"});
if (INPUT && INPUT.previous) {previous.set(INPUT.previous);}
let expected = new abap.types.String({qualifiedName: "STRING"});
if (INPUT && INPUT.expected) {expected.set(INPUT.expected);}
let actual = new abap.types.String({qualifiedName: "STRING"});
if (INPUT && INPUT.actual) {actual.set(INPUT.actual);}
await super.constructor_({previous: previous});
this.me.get().expected.set(expected);
this.me.get().actual.set(actual);
this.me.get().msg.set(msg);
if (abap.compare.initial(this.me.get().msg)) {
this.me.get().msg.set(new abap.types.String().set(`Unit test assertion failed`));
}
return this;
}
}
abap.Classes['KERNEL_CX_ASSERT'] = kernel_cx_assert;
export {kernel_cx_assert}; |