Beispiel #1
0
 public void TestGoodSubtractionCasesParseOps()
 {
     string input "5 - 1";
     Parse parse = new Parse();
     string[] array = parse.extractoperands(input);
     string[] expectarray = { "-" };
     CollectionAssert.AreEqual(expectarray, array);
 }