Exemplo n.º 1
0
        public void Insert_After_No_Match_Test_Throws_Exception()
        {
            //Arrange
            DataStructures.LinkedLists testList = new LinkedLists();
            testList.Insert(24);
            testList.Insert(13);
            testList.Insert(86);
            //string expected = "{86} => {13} => {24} => NULL";



            //Assert
            Assert.Throws <ArgumentException>(() =>
            {
                //Act
                testList.InsertAfter(11, 5);
                string actual = testList.ToString();
            });
        }