mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
generators.md: fix extraneous back tick in doc
This commit is contained in:
parent
e509012e64
commit
4611125801
@ -61,7 +61,7 @@ type, making their usage much nicer. These are
|
|||||||
* `map<T>(func, GeneratorWrapper<U>&&)` for `MapGenerator<T, U, Func>` (map `U` to `T`)
|
* `map<T>(func, GeneratorWrapper<U>&&)` for `MapGenerator<T, U, Func>` (map `U` to `T`)
|
||||||
* `chunk(chunk-size, GeneratorWrapper<T>&&)` for `ChunkGenerator<T>`
|
* `chunk(chunk-size, GeneratorWrapper<T>&&)` for `ChunkGenerator<T>`
|
||||||
* `random(IntegerOrFloat a, IntegerOrFloat b)` for `RandomIntegerGenerator` or `RandomFloatGenerator`
|
* `random(IntegerOrFloat a, IntegerOrFloat b)` for `RandomIntegerGenerator` or `RandomFloatGenerator`
|
||||||
* `range(start, end)` for `RangeGenerator<T>` with a step size of `1`
|
* `range(start, end)` for `RangeGenerator<T>` with a step size of `1`
|
||||||
* `range(start, end, step)` for `RangeGenerator<T>` with a custom step size
|
* `range(start, end, step)` for `RangeGenerator<T>` with a custom step size
|
||||||
|
|
||||||
|
|
||||||
@ -98,7 +98,7 @@ if you want them to come out as `std::string`:
|
|||||||
|
|
||||||
```cpp
|
```cpp
|
||||||
TEST_CASE("type conversion", "[generators]") {
|
TEST_CASE("type conversion", "[generators]") {
|
||||||
auto str = GENERATE(as<std::string>{}, "a", "bb", "ccc");`
|
auto str = GENERATE(as<std::string>{}, "a", "bb", "ccc");
|
||||||
REQUIRE(str.size() > 0);
|
REQUIRE(str.size() > 0);
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user