Merge branch 'main' of github.com:jgraley/cotest into main

This commit is contained in:
John 2024-02-14 18:18:03 +00:00
commit 50360d466a
2 changed files with 5 additions and 13 deletions

View File

@ -1,25 +1,17 @@
name: Refactor request name: Refactor request
description: Propose a new feature. description: Propose a new tidy, refactor or convention change.
labels: "enhancement" labels: "refactor"
body: body:
- type: textarea - type: textarea
id: why id: why
attributes: attributes:
label: Why do we need this feature? label: What's wrong with the code as it stands?
description: Ideally, explain why a combination of existing features cannot be used instead.
validations: validations:
required: true required: true
- type: textarea - type: textarea
id: proposal id: proposal
attributes: attributes:
label: Describe the proposal. label: Describe the proposal.
description: Include a detailed description of the feature, with usage examples. description: Include a detailed description of the change, with an example.
validations: validations:
required: true required: true
- type: textarea
id: platform
attributes:
label: Is the feature specific to an operating system, compiler, or build system version?
description: If it is, please specify which versions.
validations:
required: false

View File

@ -16,7 +16,7 @@ Cotest supports multiple test coroutines: these will _see_ mock calls with prior
Cotest permits multiple overlapping launches of code under test: in the coroutine model there is no freely concurrent execution, Cotest permits multiple overlapping launches of code under test: in the coroutine model there is no freely concurrent execution,
but a test coroutine can control the order in which overlapping mock calls return. but a test coroutine can control the order in which overlapping mock calls return.
This project is a fork of Google Test, and changes to gtest/gmock source code have been kept minimal. This project is a fork of Google Test, and changes to gtest/gmock source code have been kept minimal. C++14.
## To build and run the tests ## To build and run the tests