diff --git a/src/utils/zcl_abapgit_timer.clas.testclasses.abap b/src/utils/zcl_abapgit_timer.clas.testclasses.abap
deleted file mode 100644
index 5fda38232..000000000
--- a/src/utils/zcl_abapgit_timer.clas.testclasses.abap
+++ /dev/null
@@ -1,101 +0,0 @@
-CLASS ltcl_timer DEFINITION FOR TESTING DURATION SHORT RISK LEVEL HARMLESS.
- PRIVATE SECTION.
-
- DATA mv_disabled TYPE abap_bool.
-
- METHODS:
- setup,
- check_result
- IMPORTING
- iv_result TYPE string
- iv_regex TYPE string,
-
- run_timer FOR TESTING,
- run_timer_with_count FOR TESTING,
- run_timer_with_text FOR TESTING.
-
-ENDCLASS.
-
-CLASS ltcl_timer IMPLEMENTATION.
-
- METHOD setup.
- DATA lv_skip TYPE c LENGTH 30.
- GET PARAMETER ID 'TSE' FIELD lv_skip.
- mv_disabled = boolc( sy-sysid = 'ABC' OR lv_skip CS 'SKIP_TIMER' ).
- ENDMETHOD.
-
-
- METHOD check_result.
-
- FIND REGEX iv_regex IN iv_result.
-
- cl_abap_unit_assert=>assert_subrc(
- act = sy-subrc
- msg = |Did not return right measurement, got: { iv_result }| ).
-
- ENDMETHOD.
-
- METHOD run_timer.
-
- DATA lo_timer TYPE REF TO zcl_abapgit_timer.
-
- IF mv_disabled = abap_true.
- RETURN.
- ENDIF.
-
- lo_timer = zcl_abapgit_timer=>create( )->start( ).
-
- WAIT UP TO 1 SECONDS.
-
- check_result(
- iv_result = lo_timer->end( )
- iv_regex = '1.0[0-9] seconds' ).
-
- ENDMETHOD.
-
- METHOD run_timer_with_count.
-
- DATA lo_timer TYPE REF TO zcl_abapgit_timer.
-
- IF mv_disabled = abap_true.
- RETURN.
- ENDIF.
-
- lo_timer = zcl_abapgit_timer=>create( iv_count = 1 )->start( ).
-
- WAIT UP TO 1 SECONDS.
-
- check_result(
- iv_result = lo_timer->end( )
- iv_regex = '1 object, 1.0[0-9] seconds' ).
-
- lo_timer = zcl_abapgit_timer=>create( iv_count = 1234 )->start( ).
-
- WAIT UP TO 1 SECONDS.
-
- check_result(
- iv_result = lo_timer->end( )
- iv_regex = '1234 objects, 1.0[0-9] seconds' ).
-
- ENDMETHOD.
-
- METHOD run_timer_with_text.
-
- CONSTANTS lc_total TYPE string VALUE 'Total:'.
-
- DATA lo_timer TYPE REF TO zcl_abapgit_timer.
-
- IF mv_disabled = abap_true.
- RETURN.
- ENDIF.
-
- lo_timer = zcl_abapgit_timer=>create( lc_total )->start( ).
-
- WAIT UP TO 1 SECONDS.
-
- check_result(
- iv_result = lo_timer->end( )
- iv_regex = |{ lc_total } 1.0[0-9] seconds| ).
-
- ENDMETHOD.
-ENDCLASS.
diff --git a/src/utils/zcl_abapgit_timer.clas.xml b/src/utils/zcl_abapgit_timer.clas.xml
index bd80b7d1b..2079dcfb2 100644
--- a/src/utils/zcl_abapgit_timer.clas.xml
+++ b/src/utils/zcl_abapgit_timer.clas.xml
@@ -10,7 +10,6 @@
X
X
X
- X