Skip to content

Commit

Permalink
docs: fix typos in README (#2)
Browse files Browse the repository at this point in the history
+semver: none
  • Loading branch information
ewingjm authored Mar 8, 2024
1 parent 7227dba commit fa62b55
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ flowchart LR
submitCase --> processCase
```

The automated tests for this application will need to setup scenarios up to any given point in that process. In addition, the will need configure the specific parameters of each of those events. The scenario builder provides a framework for achieving both of those goals.
The automated tests for this application will need to setup scenarios up to any given point in that process. In addition, they will need to configure the specific parameters of each of those events. The scenario builder provides a framework for achieving both of those goals.

A scenario with a completely processed case:

Expand Down Expand Up @@ -95,14 +95,13 @@ public void GivenACaseHasBeenAssignedToMe()

```csharp
[Given("I have completed the documents check")]
public void GivenACaseHasBeenAssignedToMe()
public void GivenIHaveCompletedTheDocumentsCheck()
{
var scenario = this.ctx.Get<MyScenario>("scenario");

this.scenarioBuilder.
.CaseworkerProcessesCase(a => a
.ByCompletingDocumentsCheck(b => b
.WithOutcome(DocumentsCheckOutcome.MissingDocuments))
.ByCompletingDocumentsCheck()
.BuildAsync(scenario);
}
```
Expand Down

0 comments on commit fa62b55

Please sign in to comment.