mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-26 07:16:10 +01:00
Add missing version information to matchers.md
This commit is contained in:
parent
efca9a0f18
commit
adf43494e1
@ -226,14 +226,18 @@ definitions to handle generic range-like types. These are:
|
|||||||
* `Contains(T&& target_element, Comparator = std::equal_to<>{})`
|
* `Contains(T&& target_element, Comparator = std::equal_to<>{})`
|
||||||
* `Contains(Matcher element_matcher)`
|
* `Contains(Matcher element_matcher)`
|
||||||
* `AllMatch(Matcher element_matcher)`
|
* `AllMatch(Matcher element_matcher)`
|
||||||
* `NoneMatch(Matcher element_matcher)`
|
|
||||||
* `AnyMatch(Matcher element_matcher)`
|
* `AnyMatch(Matcher element_matcher)`
|
||||||
* `AllTrue()`
|
* `NoneMatch(Matcher element_matcher)`
|
||||||
* `NoneTrue()`
|
* `AllTrue()`, `AnyTrue()`, `NoneTrue()`
|
||||||
* `AnyTrue()`
|
|
||||||
* `RangeEquals(TargetRangeLike&&, Comparator = std::equal_to<>{})`
|
* `RangeEquals(TargetRangeLike&&, Comparator = std::equal_to<>{})`
|
||||||
* `UnorderedRangeEquals(TargetRangeLike&&, Comparator = std::equal_to<>{})`
|
* `UnorderedRangeEquals(TargetRangeLike&&, Comparator = std::equal_to<>{})`
|
||||||
|
|
||||||
|
> `IsEmpty`, `SizeIs`, `Contains` were introduced in Catch2 3.0.1
|
||||||
|
|
||||||
|
> `All/Any/NoneMatch` were introduced in Catch2 3.0.1
|
||||||
|
|
||||||
|
> `All/Any/NoneTrue` were introduced in Catch2 3.1.0
|
||||||
|
|
||||||
> `RangeEquals` and `UnorderedRangeEquals` matchers were [introduced](https://github.com/catchorg/Catch2/pull/2377) in Catch2 X.Y.Z
|
> `RangeEquals` and `UnorderedRangeEquals` matchers were [introduced](https://github.com/catchorg/Catch2/pull/2377) in Catch2 X.Y.Z
|
||||||
|
|
||||||
`IsEmpty` should be self-explanatory. It successfully matches objects
|
`IsEmpty` should be self-explanatory. It successfully matches objects
|
||||||
|
Loading…
Reference in New Issue
Block a user