drop detail

This commit is contained in:
John 2024-02-14 16:15:13 +00:00
parent 6f756216db
commit 9b502aaf21

View File

@ -10,7 +10,7 @@ and can insert arbitrary logic to decide how to respond to mock calls and result
Cotest supports matching on both _watches_ (similar to GMock expectations but with additional wildcard categories) and inside the coroutine body
(a test coroutine can _drop_ a mock call and GMock's matching search will continue). Cotest actions are simply coded directly into the coroutine body by the user.
Cardinality is inferred from the execution state of the coroutine, plus APIs for retiring and becoming satisfied.
Cardinality is inferred from the execution state of the coroutine.
Cotest supports multiple test coroutines: these will _see_ mock calls with priority established by their watches, which may be interleaved with GMock expectations.
Cotest permits multiple overlapping launches of code under test: in the coroutine model there is no freely concurrent execution,