public void ReferenceConstrainedType_Delegate_Test() { var del = new ReferenceConstrainedType <EventHandler>(); Assert.IsNotNull(del); }
public void ReferenceConstrainedType_CustomClass_Test() { var emp = new ReferenceConstrainedType <Employee>(); Assert.IsNotNull(emp); }
public void ReferenceConstrainedType_Interface_Test() { var type = new ReferenceConstrainedType <ISaveable>(); Assert.IsNotNull(type); }
public void ReferenceConstrainedType_Array_Test() { var array = new ReferenceConstrainedType <int[]>(); Assert.IsNotNull(array); }
public void ReferenceConstrainedType_Class_Test() { var strings = new ReferenceConstrainedType <string>(); Assert.IsNotNull(strings); }