Created
March 17, 2018 08:50
-
-
Save larshp/aaf8e84a6b48bdafc54e6bd18df692e0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CLASS ltcl_test DEFINITION FOR TESTING DURATION SHORT RISK LEVEL HARMLESS FINAL. | |
PUBLIC SECTION. | |
INTERFACES: | |
if_oo_adt_intrnl_classrun PARTIALLY IMPLEMENTED. | |
PRIVATE SECTION. | |
METHODS: main FOR TESTING. | |
ENDCLASS. "ltcl_Test | |
CLASS ltcl_test IMPLEMENTATION. | |
METHOD main. | |
NEW zcl_testing( )->if_oo_adt_classrun~main( me ). | |
ENDMETHOD. | |
METHOD if_oo_adt_intrnl_classrun~write_text. | |
cl_abap_unit_assert=>fail( | |
msg = text | |
level = if_aunit_constants=>tolerant | |
quit = if_aunit_constants=>no ). | |
ENDMETHOD. | |
ENDCLASS. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment