Пример #1
0
 public void NumericUtility_SafeToInt64_1()
 {
     Assert.AreEqual(0L, NumericUtility.SafeToInt64("hello"));
     Assert.AreEqual(0L, NumericUtility.SafeToInt64(null));
     Assert.AreEqual(132L, NumericUtility.SafeToInt64("132"));
 }