/AWS1/IF_BLD=>DESCRIBETESTCASES()¶
About DescribeTestCases¶
Returns a list of details about test cases for a report.
Method Signature¶
METHODS /AWS1/IF_BLD~DESCRIBETESTCASES
IMPORTING
!IV_REPORTARN TYPE /AWS1/BLDSTRING OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/BLDSTRING OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/BLDPAGESIZE OPTIONAL
!IO_FILTER TYPE REF TO /AWS1/CL_BLDTESTCASEFILTER OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_blddescrtestcasesout
RAISING
/AWS1/CX_BLDINVALIDINPUTEX
/AWS1/CX_BLDRESOURCENOTFOUNDEX
/AWS1/CX_BLDCLIENTEXC
/AWS1/CX_BLDSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_reportarn TYPE /AWS1/BLDSTRING /AWS1/BLDSTRING¶
The ARN of the report for which test cases are returned.
Optional arguments:¶
iv_nexttoken TYPE /AWS1/BLDSTRING /AWS1/BLDSTRING¶
During a previous call, the maximum number of items that can be returned is the value specified in
maxResults. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
iv_maxresults TYPE /AWS1/BLDPAGESIZE /AWS1/BLDPAGESIZE¶
The maximum number of paginated test cases returned per response. Use
nextTokento iterate pages in the list of returnedTestCaseobjects. The default value is 100.
io_filter TYPE REF TO /AWS1/CL_BLDTESTCASEFILTER /AWS1/CL_BLDTESTCASEFILTER¶
A
TestCaseFilterobject used to filter the returned reports.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_blddescrtestcasesout /AWS1/CL_BLDDESCRTESTCASESOUT¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->describetestcases(
io_filter = new /aws1/cl_bldtestcasefilter(
iv_keyword = |string|
iv_status = |string|
)
iv_maxresults = 123
iv_nexttoken = |string|
iv_reportarn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_string = lo_result->get_nexttoken( ).
LOOP AT lo_result->get_testcases( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_nonemptystring = lo_row_1->get_reportarn( ).
lv_string = lo_row_1->get_testrawdatapath( ).
lv_string = lo_row_1->get_prefix( ).
lv_string = lo_row_1->get_name( ).
lv_string = lo_row_1->get_status( ).
lv_wrapperlong = lo_row_1->get_durationinnanoseconds( ).
lv_string = lo_row_1->get_message( ).
lv_timestamp = lo_row_1->get_expired( ).
lv_string = lo_row_1->get_testsuitename( ).
ENDIF.
ENDLOOP.
ENDIF.