Example #1
0
 public void FuncFourArg_GetWrappedType_NonGeneric(FuncFourArgWrapperStrategy strategy)
 {
     Assert.Equal(null, strategy.GetWrappedType(typeof(BasicService)));
 }
Example #2
0
 public void FuncFourArg_GetWrappedType(FuncFourArgWrapperStrategy strategy)
 {
     Assert.Equal(typeof(IBasicService),
                  strategy.GetWrappedType(typeof(Func <int, int, int, int, IBasicService>)));
 }