Esempio n. 1
0
 public void FuncThreeArg_GetWrappedType_NonGeneric(FuncThreeArgWrapperStrategy strategy)
 {
     Assert.Equal(null, strategy.GetWrappedType(typeof(BasicService)));
 }
Esempio n. 2
0
 public void FuncThreeArg_GetWrappedType(FuncThreeArgWrapperStrategy strategy)
 {
     Assert.Equal(typeof(IBasicService),
                  strategy.GetWrappedType(typeof(Func <int, int, int, IBasicService>)));
 }