示例#1
0
 public void FuncOneArg_GetWrappedType_NonGeneric(FuncOneArgWrapperStrategy strategy)
 {
     Assert.Equal(null, strategy.GetWrappedType(typeof(BasicService)));
 }
示例#2
0
 public void FuncOneArg_GetWrappedType(FuncOneArgWrapperStrategy strategy)
 {
     Assert.Equal(typeof(IBasicService),
                  strategy.GetWrappedType(typeof(Func <int, IBasicService>)));
 }