Beispiel #1
0
 public void ChangeType_ProvidesTypedServiceWithNewType()
 {
     var nt = typeof(string);
     var ts = new TypedService(typeof(object));
     var n = ts.ChangeType(nt);
     Assert.Equal(new TypedService(nt), n);
 }