Created
March 21, 2012 01:46
-
-
Save hugo-dc/2143546 to your computer and use it in GitHub Desktop.
ABAP Unit Test
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 class_name DEFINITION FOR TESTING. | |
"#AU Risk_level Harmless | |
"#AU Duration Short | |
PRIVATE SECTION. | |
METHODS test_something FOR TESTING. | |
METHODS test_something_else FOR TESTING. | |
ENDCLASS. | |
CLASS class_name IMPLEMENTATION. | |
METHOD test_something. | |
" abap code goes here | |
ENDMETHOD. | |
METHOD test_something_else. | |
" abap code | |
ENDMETHOD. | |
ENDCLASS. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment