示例#1
0
 public void IsTupleFamilyOnNonGenericType()
 {
     Assert.IsFalse(Reflector.IsTupleFamily(typeof(object)));
 }
示例#2
0
 public void CannotIsTupleFamilyWithNullType()
 {
     Reflector.IsTupleFamily(null);
 }
示例#3
0
 public void IsTupleFamilyOnTupleGenericTypeDefinition()
 {
     Assert.IsFalse(Reflector.IsTupleFamily(typeof(Tuple <>)));
 }
示例#4
0
 public void CannotIsConstructionOfNullableWithNullType()
 {
     Reflector.IsConstructionOfNullable(null);
 }