Esempio n. 1
0
 public void Clone_ComparingStackInnerArrayToCloneOfThatArray_ReturnsTrue()
 {
     int[] expectedResult = new int[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
     for (int i = 0; i < 10; i++)
     {
         _intStack.Push(i);
     }
     Assert.AreEqual(expectedResult, _intStack.Clone());
 }