예제 #1
0
 public void Push_Pop_Testing()
 {
     IStackTester.Push_Pop_Int32_Testing <StackLinked <int> >();
     IStackTester.Push_Pop_String_Testing <StackLinked <string> >();
 }
예제 #2
0
파일: Stack.cs 프로젝트: mangzee/Towel
 [TestMethod] public void Push_Pop_Testing()
 {
     IStackTester.Push_Pop_Int32_Testing <StackArray <int> >();
     IStackTester.Push_Pop_String_Testing <StackArray <string> >();
 }