public T Pop() { T last = myArr[myArr.Count - 1]; myArr.RemoveAt(myArr.Count - 1); return(last); }
public void Test_DinamicArray_RemoveAt_TrowsInvalidIndexException(int index) { DinamicArray <int> array1 = new DinamicArray <int>(); array1.Add(1); array1.Add(2); Assert.Throws <System.IndexOutOfRangeException>(() => array1.RemoveAt(index)); }
//[TestCase(new int[] { 4, 5, 6 }, 3, new int[] { 4, 5, 6 })] //[TestCase(new int[] { 4, 5, 6 }, 4, new int[] { 4, 5, 6 })] public void Test_DinamicArray_RemoveAt( int[] initialElements, int indexToRemove, int[] expectedResult) { //Arrange var array1 = new DinamicArray <int>(); for (int i = 0; i < initialElements.Length; i++) { array1.Add(initialElements[i]); } //Act array1.RemoveAt(indexToRemove); //Assert bool countIsCorrect = array1.Count == expectedResult.Length; bool elementsAreFine = false; if (expectedResult.Length > 0) { for (int i = 0; i < array1.Count; i++) { elementsAreFine = array1[i] == expectedResult[i]; if (!elementsAreFine) { break; } } } else { elementsAreFine = array1.Count == 0; } Assert.That(countIsCorrect && elementsAreFine); }
void Start() { Debug.Log("Comienzo test de array dinamico ------------------>"); //-------------------> Inserte aqui su array dinamico. //-------------------> vvvvvvvvvvvvvvvvvvvvvvvv < IDinamicArray <int> dinamicArray = new DinamicArray <int>(); //-------------------> ^^^^^^^^^^^^^^^^^^^^^^^^ < dinamicArray.Add(10); dinamicArray.Add(20); dinamicArray.Add(30); if (dinamicArray.Count != 3) { Debug.LogWarning("Count no vale lo que deberia."); } if (!CheckEquality(dinamicArray, new List <int>() { 10, 20, 30 })) { Debug.LogWarning("Los elementos contenidos no son los correctos."); } dinamicArray[0] = -10; if (!CheckEquality(dinamicArray, new List <int>() { -10, 20, 30 })) { Debug.LogWarning("Los elementos contenidos no son los correctos."); } dinamicArray.Add(40); if (dinamicArray.Count != 4) { Debug.LogWarning("Count no vale lo que deberia."); } if (!CheckEquality(dinamicArray, new List <int>() { -10, 20, 30, 40 })) { Debug.LogWarning("Los elementos contenidos no son los correctos."); } dinamicArray.Insert(40, 1); if (dinamicArray.Count != 5) { Debug.LogWarning("Count no vale lo que deberia."); } if (!CheckEquality(dinamicArray, new List <int>() { -10, 40, 20, 30, 40 })) { Debug.LogWarning("Los elementos contenidos no son los correctos."); } if (!dinamicArray.Contains(20) || !dinamicArray.Contains(40) || dinamicArray.Contains(0)) { Debug.LogWarning("Hay un problema con el contains"); } if (dinamicArray.IndexOf(40) != 1 || dinamicArray.IndexOf(30) != 3) { Debug.LogWarning("Hay un problema con el IndexOf"); } if (dinamicArray.IndexOf(50) != -1) { Debug.LogWarning("Hay un problema con el IndexOf"); } dinamicArray.Remove(40); if (dinamicArray.Count != 4) { Debug.LogWarning("Count no vale lo que deberia."); } if (!CheckEquality(dinamicArray, new List <int>() { -10, 20, 30, 40 })) { Debug.LogWarning("Los elementos contenidos no son los correctos."); } dinamicArray.RemoveAt(2); if (dinamicArray.Count != 3) { Debug.LogWarning("Count no vale lo que deberia."); } if (!CheckEquality(dinamicArray, new List <int>() { -10, 20, 40 })) { Debug.LogWarning("Los elementos contenidos no son los correctos."); } dinamicArray.Clear(); if (dinamicArray.Count != 0) { Debug.LogWarning("Count no vale lo que deberia."); } Debug.Log("Si llega hasta aca sin loguear nada esta todo correcto."); Debug.Log("Fin de test de array dinamico <--------------------"); }