Example #1
0
 public void IEnumerable_Testing()
 {
     IStackTester.IEnumerable_Testing <StackLinked <int> >();
 }
Example #2
0
 public void Stepper_Testing()
 {
     IStackTester.Stepper_Testing <StackLinked <int> >();
 }
Example #3
0
 public void Push_Pop_Testing()
 {
     IStackTester.Push_Pop_Int32_Testing <StackLinked <int> >();
     IStackTester.Push_Pop_String_Testing <StackLinked <string> >();
 }
Example #4
0
 public void IEnumerable_Testing()
 {
     IStackTester.IEnumerable_Testing <StackArray <int> >();
 }
Example #5
0
 public void Stepper_Testing()
 {
     IStackTester.Stepper_Testing <StackArray <int> >();
 }
Example #6
0
 [TestMethod] public void Push_Pop_Testing()
 {
     IStackTester.Push_Pop_Int32_Testing <StackArray <int> >();
     IStackTester.Push_Pop_String_Testing <StackArray <string> >();
 }