System.Linq.Tests.CountTests.EmptySourceWithPredicate C# (CSharp) Method

EmptySourceWithPredicate() private method

private EmptySourceWithPredicate ( ) : void
return void
        public void EmptySourceWithPredicate()
        {
            Assert.Equal(0, Enumerable.Empty<int>().AsQueryable().Count(i => i % 2 == 0));
        }