You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix text case in WireMock and features summary (#35)
Just testing the pull request template update and doing something useful
:)
## References
- TODO
<!-- References to relevant GitHub issues and pull requests, esp.
upstream and downstream changes -->
## Submitter checklist
- [ ] Recommended: Join [WireMock Slack](https://slack.wiremock.org/) to
get any help in `#help-contributing` or a project-specific channel like
`#wiremock-java`
- [ ] The PR request is well described and justified, including the body
and the references
- [ ] The PR title represents the desired changelog entry
- [ ] The repository's code style is followed (see the contributing
guide)
- [ ] Test coverage that demonstrates that the change works as expected
- [ ] For new features, there's necessary documentation in this pull
request or in a subsequent PR to
[wiremock.org](https://github.com/wiremock/wiremock.org)
<!--
Put an `x` into the [ ] to show you have filled the information.
The template comes from
https://github.com/wiremock/.github/blob/main/.github/pull_request_template.md
You can override it by creating .github/pull_request_template.md in your
own repository
-->
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,11 +15,11 @@ Adds support to transport state across different stubs.
15
15
- append new states a state list
16
16
- Delete a state
17
17
- delete states from state list (first, last, by index, by state propery comparison)
18
-
-request matching against context existance/non-existance
19
-
-response templating integration
18
+
-Request matching against context existance/non-existance
19
+
-Response templating integration
20
20
- get state for a given context
21
21
- get state list entry by index
22
-
-templating support in all configuration options of this extension
22
+
-Templating support in all configuration options of this extension
23
23
24
24
## Glossary
25
25
@@ -47,7 +47,7 @@ classDiagram
47
47
48
48
## Background
49
49
50
-
Wiremock supports [Response Templating](https://wiremock.org/docs/response-templating/) and [Scenarios](https://wiremock.org/docs/stateful-behaviour/)
50
+
WireMock supports [Response Templating](https://wiremock.org/docs/response-templating/) and [Scenarios](https://wiremock.org/docs/stateful-behaviour/)
51
51
to add dynamic behavior and state. Both approaches have limitations:
52
52
53
53
-`Response templating` only allows accessing data submitted in the same request
@@ -214,7 +214,7 @@ add authentication to GitHub packages.
214
214
215
215
### Java
216
216
217
-
This extension makes use of Wiremock's `ExtensionFactory`, so only one extension has to be registered: `StateExtension`.
217
+
This extension makes use of WireMock's `ExtensionFactory`, so only one extension has to be registered: `StateExtension`.
218
218
In order to use them, templating has to be enabled as well. A store for all state data has to be provided. This extension
219
219
provides a `CaffeineStore` which can be used - or you can provide your own store:
220
220
@@ -755,7 +755,7 @@ Example:
755
755
756
756
### Error handling
757
757
758
-
Missing Helper properties as well as unknown context properties are reported as error. Wiremock renders them in the field, itself, so there won't be an
758
+
Missing Helper properties as well as unknown context properties are reported as error. WireMock renders them in the field, itself, so there won't be an
0 commit comments