public void Can_Support_Closed_Generic_Types()
 {
     Constraints.CheckImplementationType(typeof(G <int>));
 }
 public void Cannot_Support_Open_Generic_Types()
 {
     Constraints.CheckImplementationType(typeof(G <>));
 }