Akka.Tests.Routing.SmallestMailboxSpec.SmallestMail_should_not_throw_IndexOutOfRangeException_when_counter_wraps_to_be_negative C# (CSharp) Метод

SmallestMail_should_not_throw_IndexOutOfRangeException_when_counter_wraps_to_be_negative() приватный Метод

        public void SmallestMail_should_not_throw_IndexOutOfRangeException_when_counter_wraps_to_be_negative()
        {
            var routees = new[] {Routee.NoRoutee, Routee.NoRoutee, Routee.NoRoutee};
            var routingLogic = new SmallestMailboxRoutingLogic(int.MaxValue - 5);
            for (var i = 0; i < 10; i++)
            {
                routingLogic.Select(i, routees);
            }
        }
    }