abap2UI5/src/00/z2ui5_cl_fw_client.clas.testclasses.abap
oblomov 1e2a0bde29
lower syntax and unit tests (#442)
* fix scrolling issue

* update unit tests

* low syntax compatibility

* update unit tests

* update unit test
2023-07-30 20:03:16 +02:00

23 lines
447 B
ABAP

CLASS ltcl_unit_test DEFINITION FINAL FOR TESTING
DURATION medium
RISK LEVEL harmless.
PRIVATE SECTION.
METHODS first_test FOR TESTING RAISING cx_static_check.
ENDCLASS.
CLASS ltcl_unit_test IMPLEMENTATION.
METHOD first_test.
DATA(lo_handler) = NEW z2ui5_cl_fw_handler( ).
DATA(lo_client) = NEW z2ui5_cl_fw_client( lo_handler ).
DATA(li_client) = CAST z2ui5_if_client( lo_client ) ##NEEDED.
ENDMETHOD.
ENDCLASS.