This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
Add name of service in the exception message when a plugin uses a custom service implementation for which there is no default mock #550
Labels
Milestone
I currently using FakeXrmEasy with standard Plugins. I works great for me
Now, I would like to integrate with third Party Plugin of which I have the API and Dll to use
for example --> public class ContactUpdateAddress : PluginBase where PluginBase Extends (IPlugin)
the execution method is --> protected override void OnExecute(PluginContext pluginContext) where PluginContext extends ContextBase and context base is defined in this way (below the the extration of the class from object metadata)
What Could I do to integrate FakeXrmEasy with External Third Party Plugin implementation?
using System;
using Microsoft.Xrm.Sdk;
using ThirdParty.CRM.Configuration;
using ThirdParty.Logging;
namespace ThirdParty.CRM
{
public abstract class ContextBase
{
public ContextBase(ILogSource log);
public ContextBase(SourceType sourceType, string sourceName);
protected internal ContextBase();
}
Originally posted by @Gmanunta81GFPS in #549
The text was updated successfully, but these errors were encountered: