Skip to content

Instantly share code, notes, and snippets.

@hugo-dc
Created March 21, 2012 01:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugo-dc/2143546 to your computer and use it in GitHub Desktop.
Save hugo-dc/2143546 to your computer and use it in GitHub Desktop.
ABAP Unit Test
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