Files
abap-test-runner/tests/simple-downport-pass/zcl_simple.clas.abap
Lars Hvam e088e2de27 downport and unit tests (#12)
* refactor tests

* additional unit tests, closes #10

* refactor

* better error messages

* add downport step, closes #9

* test
2021-11-25 18:23:15 +01:00

12 lines
194 B
ABAP

CLASS zcl_simple DEFINITION PUBLIC.
PUBLIC SECTION.
METHODS run RETURNING VALUE(res) TYPE i.
ENDCLASS.
CLASS zcl_simple IMPLEMENTATION.
METHOD run.
res = 3.
ENDMETHOD.
ENDCLASS.