Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restructure #54

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .abapgit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<DATA>
<NAME>Mockup loader</NAME>
<MASTER_LANGUAGE>E</MASTER_LANGUAGE>
<STARTING_FOLDER>/src/</STARTING_FOLDER>
<FOLDER_LOGIC>PREFIX</FOLDER_LOGIC>
Expand All @@ -18,7 +19,7 @@
<item>/abaplint.json</item>
<item>/ci/</item>
</IGNORE>
<VERSION_CONSTANT>zif_mockup_loader=&gt;version</VERSION_CONSTANT>
<VERSION_CONSTANT>ZIF_MOCKUP_LOADER=&gt;VERSION</VERSION_CONSTANT>
</DATA>
</asx:values>
</asx:abap>
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Legend

v2.2.4, 2024-??-??
------------------
! reworks in unit tests
! Restructured packages: core objects were separated from examples and devtools, to improve deployment
+ zcl_mockup_loader_utils=>and - merge several filters together - #53

v2.2.3, 2024-02-04
Expand Down
10 changes: 10 additions & 0 deletions src/core/package.devc.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DEVC" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<DEVC>
<CTEXT>Mockup loader for unit tests, Core package</CTEXT>
</DEVC>
</asx:values>
</asx:abap>
</abapGit>
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ CLASS ZCL_MOCKUP_LOADER IMPLEMENTATION.

if zcl_text2tab_parser=>check_version_fits( lc_required_ver ) = abap_false.
zcx_mockup_loader_error=>raise(
msg = |text2tab version ({ zif_text2tab_constants=>version
msg = |text2tab version ({ zif_text2tab=>version
}) is lower than required ({ lc_required_ver })|
code = 'VL' ). "#EC NOTEXT
endif.
Expand Down
Loading
Loading