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