Beispiel #1
0
 public void TestBadSubtractionCasesEnd()
 {
     string input = "15 -";
     Parse parse = new Parse();
     parse.extractproperties(input);
 }
Beispiel #2
0
 public void TestBadSubtractionCasesBeginning()
 {
     string input = "- 15";
     Parse parse = new Parse();
     parse.extractproperties(input);
 }
Beispiel #3
0
 public void TestBadMultiplicationCasesEnd()
 {
     string input = "15 *";
     Parse parse = new Parse();
     parse.extractproperties(input);
 }
Beispiel #4
0
 public void TestBadMultiplicationCasesBeginning()
 {
     string input = "* 15";
     Parse parse = new Parse();
     parse.extractproperties(input);
 }
Beispiel #5
0
 public void TestBadModulusCasesEnd()
 {
     string input = "15 %";
     Parse parse = new Parse();
     parse.extractproperties(input);
 }
Beispiel #6
0
 public void TestBadModulusCasesBeginning()
 {
     string input = "% 15";
     Parse parse = new Parse();
     parse.extractproperties(input);
 }