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