Example #1
0
 public void IsNotLongTest()
 {
     Assert.IsFalse(CoreFn.IsLong("9,223,372,036,854,775,808"));
     Assert.IsFalse(CoreFn.IsLong("10.56"));
 }
Example #2
0
 public void IsLongTest()
 {
     Assert.IsTrue(CoreFn.IsLong("9,223,372,036,854,775,807"));
 }