Example #1
0
        public void Validate(int[] pushed, int[] popped, bool expected)
        {
            var sut    = new ValidateStackSequences();
            var actual = sut.Validate(pushed, popped);

            Assert.AreEqual(expected, actual);
        }
Example #2
0
 public void BeforeEach()
 {
     ValidateStackSequences = new ValidateStackSequences();
 }