In a test method you call method cl_abap_unit_assert=>assert_equals( .. ) in the following way:
CLASS Itcl1 DEFINITION FOR TESTING RISK LEVEL HARMLESS DURATION SHORT.
PRIVATE SECTION.
METHODS m1 FOR TESTING.
ENDCLASS.
CLASS Itcl1 IMPLEMENTATION.
METHOD m1.
DATA: go_test_object TYPE REF TO zcl_to_be_tested.
CONSTANTS: Ico_exp TYPE string VALUE 'test2'.
CREATE OBJECT go_test_object.
cl_abap_unit_assert=>assert_equals(
EXPORTING
act = go_class->mv_attribute
exp = lco_exp
msg = 'assert equals failed ' && go_test_object->mv_attribute && ' ' && lco_exp
ENDMETHOD.
ENDCLASS.
What will happen if method parameters act and exp are not equal?
Jonelle
1 months agoElden
1 months agoFletcher
8 days agoAntonio
16 days agoReita
2 months agoNana
23 days agoDarnell
24 days agoNieves
2 months agoLewis
2 months agoRessie
24 days agoKrystina
29 days agoAhmad
2 months agoDelpha
2 months agoRosio
2 months agoLillian
2 months agoGeorgiana
2 months agoPedro
2 months agoLynda
2 months ago