"!
Test Class Supporting an ABAP Unit Test Example
ABAP cheat sheet example class
The example class {@link zcl_demo_abap_unit_tdf} demonstrates managing dependencies (dependent-on-components, DOC)
"! with ABAP Unit and explores the creation of test doubles using ABAP frameworks.
"! This global class is empty, but the the Test Classes tab includes a test class. Using the syntax
"! "! @testing ..., a test relation between this test class and another global class
"! ({@link zcl_demo_abap_unit_tdf}) is defined. Therefore, when you run unit tests of class {@link zcl_demo_abap_unit_tdf},
"! the tests contained in the class {@link ztcl_demo_abap_unit_tdf_testcl} are executed.
Find information on getting started with the example class and the disclaimer in "! the ABAP Doc comment of class {@link zcl_demo_abap_aux}.
CLASS ztcl_demo_abap_unit_tdf_testcl DEFINITION PUBLIC FINAL CREATE PUBLIC . PUBLIC SECTION. PROTECTED SECTION. PRIVATE SECTION. ENDCLASS. CLASS ztcl_demo_abap_unit_tdf_testcl IMPLEMENTATION. ENDCLASS.