TYPE string_table.
diff --git a/src/ui/core/zcl_abapgit_html.clas.testclasses.abap b/src/ui/core/zcl_abapgit_html.clas.testclasses.abap
index 90a06277b..b7d46fec3 100644
--- a/src/ui/core/zcl_abapgit_html.clas.testclasses.abap
+++ b/src/ui/core/zcl_abapgit_html.clas.testclasses.abap
@@ -33,6 +33,7 @@ CLASS ltcl_html DEFINITION FOR TESTING DURATION SHORT RISK LEVEL HARMLESS.
indent2 FOR TESTING RAISING zcx_abapgit_exception,
indent3 FOR TESTING RAISING zcx_abapgit_exception,
indent4 FOR TESTING RAISING zcx_abapgit_exception,
+ indent5 FOR TESTING RAISING zcx_abapgit_exception,
style1 FOR TESTING RAISING zcx_abapgit_exception.
METHODS:
@@ -119,6 +120,16 @@ CLASS ltcl_html IMPLEMENTATION.
ENDMETHOD.
+ METHOD indent5.
+* dont dump if something messes up or the nesting gets too wide
+ DO 300 TIMES.
+ mo_html->add( '' ).
+ ENDDO.
+
+ mo_html->render( ).
+
+ ENDMETHOD.
+
METHOD style1.
DATA lv_exp TYPE string.
|