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