/**
   * @param method
   * @param instance
   * @param convertedArgs
   * @throws IllegalAccessException
   * @throws InvocationTargetException
   */
  private void preInvoke(Method method, Object instance, Object[] convertedArgs)
      throws InvocationTargetException, IllegalAccessException {

    if (instance instanceof Fixture) {

      ((Fixture) instance).preInvoke(method, instance, convertedArgs);
    }
  }