Add more documentation to BDD macros

This commit is contained in:
Martin Hořeňovský 2021-03-23 13:02:07 +01:00
parent 6734c0aa64
commit 9f44bd57f1
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 15 additions and 2 deletions

View File

@ -132,8 +132,21 @@ SCENARIO( "vector can be sized and resized" ) {
}
}
```
See [this working example](https://godbolt.org/z/e5vPPM), with an intentional failure to demonstrate the reporting
output.
This code will result in two runs through the scenario:
```
Scenario : vector can be sized and resized
Given : An empty vector
Then : The size and capacity start at 0
Scenario : vector can be sized and resized
Given : An empty vector
When : push_back() is called
Then : The size changes
```
See also [runnable example on godbolt](https://godbolt.org/z/e5vPPM),
with a more complicated (and failing) example.
> `AND_GIVEN` was [introduced](https://github.com/catchorg/Catch2/issues/1360) in Catch2 2.4.0.