All files / src/ui/core zcl_abapgit_ui_core_injector.clas.abap

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

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 261x 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_ui_core_injector DEFINITION
  PUBLIC
  FOR TESTING
  CREATE PRIVATE .
 
  PUBLIC SECTION.
 
    CLASS-METHODS set_html_viewer
      IMPORTING
        !ii_html_viewer TYPE REF TO zif_abapgit_html_viewer .
  PROTECTED SECTION.
  PRIVATE SECTION.
ENDCLASS.
 
 
 
CLASS zcl_abapgit_ui_core_injector IMPLEMENTATION.
 
  METHOD set_html_viewer.
 
    zcl_abapgit_ui_core_factory=>gi_html_viewer = ii_html_viewer.
 
  ENDMETHOD.
 
ENDCLASS.