}
protected Object callMethod(Object instance, Method method, Object[] convertedArgs) throws Throwable {
FixtureInteraction interaction = SlimService.getInteractionClass().newInstance();
try {
return interaction.methodInvoke(method, instance, convertedArgs);
} catch (InvocationTargetException e) {
throw e.getCause();
}
}