mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 04:36:49 +08:00
commit
7665cb37ec
|
@ -199,7 +199,7 @@ CLASS lcl_object_devc IMPLEMENTATION.
|
||||||
invalid_translation_depth = 18
|
invalid_translation_depth = 18
|
||||||
wrong_mainpack_value = 19
|
wrong_mainpack_value = 19
|
||||||
superpackage_invalid = 20
|
superpackage_invalid = 20
|
||||||
error_in_cts_checks = 21
|
* error_in_cts_checks = 21 downport, does not exist in 7.31
|
||||||
OTHERS = 22 ).
|
OTHERS = 22 ).
|
||||||
IF sy-subrc <> 0.
|
IF sy-subrc <> 0.
|
||||||
zcx_abapgit_exception=>raise( |Error from CL_PACKAGE_FACTORY=>CREATE_NEW_PACKAGE { sy-subrc }| ).
|
zcx_abapgit_exception=>raise( |Error from CL_PACKAGE_FACTORY=>CREATE_NEW_PACKAGE { sy-subrc }| ).
|
||||||
|
|
|
@ -2757,7 +2757,9 @@ CLASS ltcl_oo_serialize IMPLEMENTATION.
|
||||||
|
|
||||||
METHOD _then_should_be_skipped.
|
METHOD _then_should_be_skipped.
|
||||||
|
|
||||||
cl_abap_unit_assert=>assert_true( act = mv_skip_testclass
|
cl_abap_unit_assert=>assert_equals(
|
||||||
|
act = mv_skip_testclass
|
||||||
|
exp = abap_true
|
||||||
msg = |Testclass should be skipped| ).
|
msg = |Testclass should be skipped| ).
|
||||||
|
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
@ -2765,7 +2767,9 @@ CLASS ltcl_oo_serialize IMPLEMENTATION.
|
||||||
|
|
||||||
METHOD _then_should_not_be_skipped.
|
METHOD _then_should_not_be_skipped.
|
||||||
|
|
||||||
cl_abap_unit_assert=>assert_false( act = mv_skip_testclass
|
cl_abap_unit_assert=>assert_equals(
|
||||||
|
act = mv_skip_testclass
|
||||||
|
exp = abap_false
|
||||||
msg = |Testclass should not be skipped| ).
|
msg = |Testclass should not be skipped| ).
|
||||||
|
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user