public void ShouldGetFrontElement() { Data.Structures.Queue <int> queue = new Data.Structures.Queue <int>(); int[] elements = new int[] { 1, 2, 3, 4, 5 }; queue.EnqueueRange(elements); Assert.AreEqual(1, queue.Front); }
public void ShouldEnqueueRange_WithIList() { Data.Structures.Queue <int> queue = new Data.Structures.Queue <int>(); IList <int> elements = new int[] { 1, 2, 3, 4, 5 }; queue.EnqueueRange(elements); Assert.AreEqual(elements.Count(), queue.Count); }