public void Test069()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsDecimal(typeof(ulong?)));
 }
 public void Test067()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsDecimal(typeof(sbyte?)));
 }
 public void Test058()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsDecimal(typeof(uint)));
 }
 public void Test046()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsDecimal(typeof(string)));
 }
 public void Test045()
 {
     var type = new TypeReflection();
     Assert.IsTrue(type.IsDecimal(typeof(decimal?)));
 }
 public void Test040()
 {
     var type = new TypeReflection();
     Assert.IsTrue(type.IsDecimal(typeof(float)));
 }