Ejemplo n.º 1
0
 private void AssertOnHavingMethod(Type classType, string methodName, Type returnType, IList <Type> @params)
 {
     Assert.True(ReflectionHelper.HasMethod(classType, methodName, returnType, @params));
 }
 private void AssertOnHavingMethod(Type type, string methodName, Type returnType, Type[] paramTypes)
 {
     Assert.True(ReflectionHelper.HasMethod(type, methodName, returnType, paramTypes));
 }
Ejemplo n.º 3
0
 private void AssertOnHavingMethodWithParamNames(Type classType, string methodName, Type returnType, Dictionary <Type, string> @params, IDictionary <Type, IDictionary <string, object> > propValuesMapping)
 {
     Assert.True(ReflectionHelper.HasMethod(classType, methodName, returnType, @params));
 }