Exemple #1
0
        public void GetEqualItemsFromStartTest2()
        {
            var source = new Int32[] { };
            var other  = new[] { 4, 8, 15, 16, 23, 42 };

            var result = source.GetEqualItemsFromStart(other);

            result.Count()
            .Should()
            .Be(0);
        }