コード例 #1
0
 public void StackEnsureICanSetAndGetLastAnswer()
 {
     Stack expression = new Stack();
     expression.SetLastA(2);
     int expectedInt = 2;
     int actualInt = expression.GetLastA();
     Assert.AreEqual(expectedInt, actualInt);
 }