public void FuncTwoArg_GetWrappedType_NonGeneric(FuncTwoArgWrapperStrategy strategy)
 {
     Assert.Equal(null, strategy.GetWrappedType(typeof(BasicService)));
 }
 public void FuncTwoArg_GetWrappedType(FuncTwoArgWrapperStrategy strategy)
 {
     Assert.Equal(typeof(IBasicService),
                  strategy.GetWrappedType(typeof(Func <int, int, IBasicService>)));
 }