public void OrderedTaskCollection_GivenCtor_WhenCalledWithTaskList_ThenShouldSucceed()
        {
            var tasks = new OrderedTaskCollection <int>(
                new[]
            {
                Task.FromResult(1),
            });

            tasks.Should().NotBeEmpty();
        }