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

80.39% Statements 41/51
100% Branches 0/0
0% Functions 0/5
80.39% Lines 41/51

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 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 521x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     1x     1x 1x 1x 1x 1x 1x 1x     1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x     1x     1x 1x  
CLASS zcl_abapgit_web_cts_api DEFINITION PUBLIC.
  PUBLIC SECTION.
    INTERFACES:
      zif_abapgit_cts_api.
ENDCLASS.
 
CLASS zcl_abapgit_web_cts_api IMPLEMENTATION.
  METHOD zif_abapgit_cts_api~confirm_transport_messages.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~create_transport_entries.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~get_r3tr_obj_for_limu_obj.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~get_transports_for_list.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~get_transport_for_object.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~insert_transport_object.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~is_chrec_possible_for_package.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~list_open_requests_by_user.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~list_r3tr_by_request.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~read.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~read_description.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~read_user.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~validate_transport_request.
    RETURN. " todo, implement method
  ENDMETHOD.
  METHOD zif_abapgit_cts_api~change_transport_type.
    RETURN. " todo, implement method
  ENDMETHOD.
 
ENDCLASS.