public void QueueShouldInitiallyBeEmpty()
        {
            _numberService.Reset();
            var queue = _numberService.Queue;

            CollectionAssert.IsEmpty(queue, "queue is not empty!");
        }