Ejemplo n.º 1
0
 //testing that theinvalid  bin status is parsed correctly
 public void TestThatInvalidStatusReturnsZero()
 {
     Assert.AreEqual(0, BinStatusParser.ParseStatus(""));
 }
Ejemplo n.º 2
0
 //testing that the unexpected bin status is parsed correctly
 public void TestThatUnexpectedStatusReturnsValidInt(string status)
 {
     Assert.AreEqual(2, BinStatusParser.ParseStatus(status));
 }