コード例 #1
0
 public void FindSymbol()
 {
     String input = "20+59";
     Parse parse = new Parse();
     String expected = "+";
     String actual = parse.Symbol(input);
     Assert.AreEqual(expected, actual);
 }