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