BlessTests.Util.RedBlackTreeTests.RBAssertNotPresent C# (CSharp) Method

RBAssertNotPresent() private method

private RBAssertNotPresent ( RedBlackTree rb, int s, int e ) : void
rb RedBlackTree
s int
e int
return void
	private void RBAssertNotPresent(RedBlackTree<int, string> rb, int s, int e)
	{
		for (int i = s; i <= e; i++) {
			IList<string> result = rb.Search(i);
			Assert.AreEqual(0, result.Count, string.Format("#!{0}->{1}@{2}", s, e, i));
		}
	}