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