| 195 | */ |
| 196 | |
| 197 | DynamicThread makeTestThread(const TestThreadFunction& testThreadFunction, const unsigned int firstSequencePoint, |
| 198 | const ThreadParameters& threadParameters, SequenceAsserter& sequenceAsserter, const QueueWrapper& queueWrapper) |
| 199 | { |
| 200 | return makeDynamicThread({testThreadStackSize, threadParameters.first}, testThreadFunction, |
| 201 | std::ref(sequenceAsserter), SequencePoints{firstSequencePoint, threadParameters.second + totalThreads}, |
| 202 | std::cref(queueWrapper)); |
| 203 | } |
| 204 | |
| 205 | /*---------------------------------------------------------------------------------------------------------------------+ |
| 206 | | local constants |
no test coverage detected