Esempio n. 1
0
 public void TestGoodSubtractionCasesParseInts()
 {
     string input "5 - 1";
     Parse parse = new Parse();
     string[] array = parse.extractnumbers(input);
     string[] expectarray = { "5", "1" };
     CollectionAssert.AreEqual(expectarray, array);
 }