mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 22:46:23 +08:00

* fix scrolling issue * update unit tests * low syntax compatibility * update unit tests * update unit test
23 lines
447 B
ABAP
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.
|