Ejemplo n.º 1
0
        public void CannotFindValueInLinkedList()
        {
            // Arrange
            LinkedLists list = new LinkedLists();

            list.Insert(4);
            list.Insert(8);
            list.Insert(15);
            list.Insert(16);
            list.Insert(23);
            list.Insert(42);

            // Act
            int  searchForValue = 100;
            bool exists         = list.Includes(searchForValue);

            // Assert
            Assert.False(exists);
        }