diff --git a/README.md b/README.md index 19db3fa8e..000d151f6 100644 --- a/README.md +++ b/README.md @@ -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,