‎2019 Sep 12 4:14 PM
Dear Folks,
is there a way to surpress code inspector warnings for unhandled exception while creating test doubles with class/method?
CL_ABAP_TESTDOUBLE=>CONFIGURE_CALL( lo_double ).
lo_double->do_some_awsome_stuff( ).
BR
Dominik
‎2019 Sep 13 6:31 AM
Maybe you can simply abandon this class (cl_abap_testdouble) because it just adds complexity and no benefit. It's easier to implement manually the interface by a local test class. Or is there something I don't see?
‎2020 Mar 05 8:08 AM
Hi Sandra,
thanks for response. It is posssible as you described to avoid using the test double framework. But it also prevents you from owning extra code. It the start it was quit hard to get used to it. But at the meantime i don't want to miss it.
BR
Dominik