diff --git a/src/kernel/call_transformation/kernel_call_transformation.clas.testclasses.abap b/src/kernel/call_transformation/kernel_call_transformation.clas.testclasses.abap index ab15d497..956f00fc 100644 --- a/src/kernel/call_transformation/kernel_call_transformation.clas.testclasses.abap +++ b/src/kernel/call_transformation/kernel_call_transformation.clas.testclasses.abap @@ -129,6 +129,7 @@ CLASS ltcl_call_transformation DEFINITION FOR TESTING RISK LEVEL HARMLESS DURATI METHODS xml_to_xml FOR TESTING RAISING cx_static_check. METHODS xml_to_xml_rm_header FOR TESTING RAISING cx_static_check. METHODS xml_to_xml_rm_header_bom FOR TESTING RAISING cx_static_check. + METHODS xml_to_xml_sort_attributes FOR TESTING RAISING cx_static_check. ENDCLASS. CLASS ltcl_call_transformation IMPLEMENTATION. @@ -1142,4 +1143,19 @@ CLASS ltcl_call_transformation IMPLEMENTATION. ENDMETHOD. + METHOD xml_to_xml_sort_attributes. + + DATA lv_xml TYPE string. + DATA lv_str_bom TYPE string. + DATA lv_hex_bom TYPE xstring. + + lv_xml = ||. + CALL TRANSFORMATION id SOURCE XML lv_xml RESULT XML lv_xml OPTIONS xml_header = 'no'. + + cl_abap_unit_assert=>assert_char_cp( + act = lv_xml + exp = '**' ). + + ENDMETHOD. + ENDCLASS. \ No newline at end of file