public async Task ContainsThrowsArgumentNullExceptionWhenSourceSequenceIsNull()
        {
            IAsyncEnumerable <int> source = null;

            source.ShouldBeNull();

            await source.ContainsAsync(0).ShouldThrowAsync <bool, ArgumentNullException>();
        }