public void CalculateOptimumThreadsCount(int workItemQueueCount, int minWorkerThreads, int maxWorkerThreads, int expected)
 {
     Assert.AreEqual(expected, WorkerThreadPool.CalculateOptimumThreadsCount(workItemQueueCount, minWorkerThreads, maxWorkerThreads));
 }