コード例 #1
0
 public void StackEnsureICanSetAndGetLastQuestion()
 {
     Stack expression = new Stack();
     expression.SetLastQ("2+2");
     string expectedStr = "2+2";
     string actualStr = expression.GetLastQ();
     Assert.AreEqual(expectedStr, actualStr);
 }