public void Test076()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsInteger(typeof(string)));
 }
 public void Test074()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsInteger(typeof(double?)));
 }
 public void Test075()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsInteger(typeof(decimal?)));
 }
 public void Test073()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsInteger(typeof(float?)));
 }
 public void Test039()
 {
     var type = new TypeReflection();
     Assert.IsTrue(type.IsInteger(typeof(ulong?)));
 }
 public void Test037()
 {
     var type = new TypeReflection();
     Assert.IsTrue(type.IsInteger(typeof(sbyte?)));
 }
 public void Test028()
 {
     var type = new TypeReflection();
     Assert.IsTrue(type.IsInteger(typeof(uint)));
 }
 public void Test023()
 {
     var type = new TypeReflection();
     Assert.IsFalse(type.IsInteger(typeof(char)));
 }