System.Linq.Tests.ExceptTests.BothEmpty C# (CSharp) Method

BothEmpty() private method

private BothEmpty ( ) : void
return void
        public void BothEmpty()
        {
            int[] first = { };
            int[] second = { };
            Assert.Empty(first.AsQueryable().Except(second.AsQueryable()));
        }