Castle.Facilities.WcfIntegration.Tests.RoundRobinPolicyTestCase.WillRoundRobin C# (CSharp) Method

WillRoundRobin() private method

private WillRoundRobin ( ) : void
return void
		public void WillRoundRobin()
		{
			var endpoints = CreateEndpoints(2);
			Assert.AreSame(endpoints[0], roundRobin.ChooseTarget());
			Assert.AreSame(endpoints[1], roundRobin.ChooseTarget());
			Assert.AreSame(endpoints[0], roundRobin.ChooseTarget());
			Assert.AreSame(endpoints[1], roundRobin.ChooseTarget());
		}