public void RemoveAt_IndexNotFound_ErrorDisplayed()
        {
            //arrange
            CustomList <int> customList = new CustomList <int>();

            //act
            customList.Add(5);
            customList.RemoveAt(6);
            customList.Add(4);
            //assert
            Assert.AreEqual(customList[1], 4);
        }