Beispiel #1
0
        public void When_List_Is_Circullar_Then_True()
        {
            var list = new CircullarList <int>(Enumerable.Range(0, 10).ToList());

            Assert.Equal(expected: 9, actual: list.Before(0));
            Assert.Equal(expected: 0, actual: list.NextAfter(9));
        }
Beispiel #2
0
        public void When_List_Returns_Valid_Count_Then_True()
        {
            var list = new CircullarList <int>(new int[] { 0, 2, 3, 4 });

            Assert.Equal(4, list.Count);
        }