Exemplo n.º 1
0
        public void Length_ShowLengthBelowIndexZero_InvalidOperationException() //Verificar se a exceção ocorre quando tentamos saber qual o tamanho em uso com index < 0
        {
            //Arrange
            var stack = new DJDStack <int>();

            //Assert
            Assert.Throws <InvalidOperationException>(() => stack.Lenght());
        }
Exemplo n.º 2
0
        public void Length_ShowLengthAboveIndexZero_UsedStackLength() //Verificar se o método "Length()" dá o tamanho em uso da stack
        {
            //Arrange
            var stack = new DJDStack <int>();

            //Act
            stack.Push(5);

            //Assert
            Assert.AreEqual(1, stack.Lenght());
        }