Example #1
0
 public void GetInt_ReturnsCorrectInt()
 {
     Assert.Equal(12345, AttributeHelpers.GetInt("12345"));
     Assert.Null(AttributeHelpers.GetInt(""));
     Assert.Null(AttributeHelpers.GetInt(null));
     Assert.Null(AttributeHelpers.GetInt("SOME_RANDOM_STRING"));
 }