mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 11:06:15 +08:00
* Fix #739 AUnit warning ZCL_EXCEL_READER_HUGE_FILE Useless warning in ABAP Unit tests of ZCL_EXCEL_READER_HUGE_FILE (reason: extra space "# AU -> "#AU) #739 * remove #AU everywhere in abap2xlsx Co-authored-by: Jane Doe <Jane.Doe@World.com> Co-authored-by: sandraros <sandra.rossi@gmail.com>
This commit is contained in:
parent
0a907d27de
commit
a0e234958b
|
@ -63,12 +63,10 @@ ENDCLASS. "ZCL_DATE_CALCULATION IMPLEMENTATION
|
||||||
*
|
*
|
||||||
*----------------------------------------------------------------------*
|
*----------------------------------------------------------------------*
|
||||||
CLASS zcl_date_calculation_test DEFINITION FOR TESTING
|
CLASS zcl_date_calculation_test DEFINITION FOR TESTING
|
||||||
" DURATION SHORT
|
DURATION SHORT
|
||||||
" RISK LEVEL HARMLESS
|
RISK LEVEL HARMLESS
|
||||||
"#AU Duration Medium
|
|
||||||
"#AU Risk_Level Harmless
|
|
||||||
.
|
.
|
||||||
PUBLIC SECTION.
|
PRIVATE SECTION.
|
||||||
METHODS:
|
METHODS:
|
||||||
months_between_two_dates FOR TESTING.
|
months_between_two_dates FOR TESTING.
|
||||||
ENDCLASS. "zcl_date_calculation_test DEFINITION
|
ENDCLASS. "zcl_date_calculation_test DEFINITION
|
||||||
|
|
|
@ -6,8 +6,9 @@ CLASS zcl_excel_common DEFINITION LOCAL FRIENDS lcl_excel_common_test.
|
||||||
*----------------------------------------------------------------------*
|
*----------------------------------------------------------------------*
|
||||||
*
|
*
|
||||||
*----------------------------------------------------------------------*
|
*----------------------------------------------------------------------*
|
||||||
CLASS lcl_excel_common_test DEFINITION FOR TESTING "#AU Risk_Level Harmless
|
CLASS lcl_excel_common_test DEFINITION FOR TESTING
|
||||||
. "#AU Duration Short
|
RISK LEVEL HARMLESS
|
||||||
|
DURATION SHORT.
|
||||||
*?<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
|
*?<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
|
||||||
*?<asx:values>
|
*?<asx:values>
|
||||||
*?<TESTCLASS_OPTIONS>
|
*?<TESTCLASS_OPTIONS>
|
||||||
|
|
|
@ -3,8 +3,10 @@ class lcl_test definition deferred.
|
||||||
class zcl_excel_reader_huge_file definition local friends lcl_test.
|
class zcl_excel_reader_huge_file definition local friends lcl_test.
|
||||||
|
|
||||||
*
|
*
|
||||||
class lcl_test definition for testing " #AU Risk_Level Harmless
|
class lcl_test definition for testing
|
||||||
inheriting from cl_aunit_assert. " #AU Duration Short
|
inheriting from cl_aunit_assert
|
||||||
|
risk level harmless
|
||||||
|
duration short.
|
||||||
|
|
||||||
private section.
|
private section.
|
||||||
data:
|
data:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
CLASS LCL_EXCEL_WORKSHEET_TEST DEFINITION FOR TESTING
|
CLASS lcl_excel_worksheet_test DEFINITION FOR TESTING
|
||||||
"#AU Risk_Level Harmless
|
RISK LEVEL HARMLESS
|
||||||
"#AU Duration Short
|
DURATION SHORT
|
||||||
.
|
.
|
||||||
*?<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
|
*?<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
|
||||||
*?<asx:values>
|
*?<asx:values>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user