Issue-782 # Support {{...}} double curly brace based as alternate placeholder delimiter alongside ${...} - #790
Merged
authorjapps merged 1 commit intoAug 17, 2026
Conversation
Owner
|
CI run is is-progress here. Keep an eye please. |
Open
3 tasks
IgnatiosSar
approved these changes
Aug 17, 2026
IgnatiosSar
left a comment
Collaborator
There was a problem hiding this comment.
Looks good to me! Acceptance criteria are met and the implementation is covered by tests.
22 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added support for {{...}} double curly braces as alternate placeholder delimiter alongside ${...}
Fixed Which Issue?
PR Branch
https://github.com/umer901/zerocode/tree/issue-782-support-double-curly-brace
Motivation and Context
Zerocode currently supports
${...}placeholders in test steps, target-env property files, and CSV-parameterized scenarios. This PR adds{{...}}as an equivalent alternative without changing existing${...}behavior.Both styles can be used in the same scenario. The implementation covers known runtime tokens, system properties/environment variables, random tokens, masked values, host-property keys, JSON-path values, CSV positional/named
PARAMvalues, and target-env file placeholders.The change is intentionally scoped to existing placeholder-resolution paths and adds no dependencies.
Implementation:
Tests:
Checklist:
1. New Unit tests were added
2. Integration tests were added
3. Test names are meaningful
3.1 Feature manually tested and outcome is successful
4. PR doesn't break any of the earlier features for end users
5. PR doesn't break the HTML report features directly
/targetfolder and they look fine6. PR doesn't break any HTML report features indirectly
7. Branch build passed in CI
8. No 'package.*' in the imports
9. Relevant DOcumentation page added or updated with clear instructions and examples for the end user
10. Http test added to
http-testing-examplesmodule(if applicable) ?11. Kafka test added to
kafka-testing-examplesmodule(if applicable) ?I have one question, is there a need to add documentation, and if so where? I reflected the changes in the comments where needed.