All files / test/src/web zcl_abapgit_web_user_record.clas.abap

100% Statements 20/20
100% Branches 0/0
100% Functions 0/0
100% Lines 20/20

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 211x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
CLASS zcl_abapgit_web_user_record DEFINITION PUBLIC.
  PUBLIC SECTION.
    INTERFACES zif_abapgit_user_record.
ENDCLASS.
 
CLASS zcl_abapgit_web_user_record IMPLEMENTATION.
 
  METHOD zif_abapgit_user_record~get_name.
    RETURN. " todo, implement method
  ENDMETHOD.
 
  METHOD zif_abapgit_user_record~get_email.
    RETURN. " todo, implement method
  ENDMETHOD.
 
  METHOD zif_abapgit_user_record~get_title.
    RETURN. " todo, implement method
  ENDMETHOD.
 
ENDCLASS.