当前位置: 首页>>代码示例>>C#>>正文


C# XrmFakedContext.ExecutePluginWith方法代码示例

本文整理汇总了C#中FakeXrmEasy.XrmFakedContext.ExecutePluginWith方法的典型用法代码示例。如果您正苦于以下问题:C# XrmFakedContext.ExecutePluginWith方法的具体用法?C# XrmFakedContext.ExecutePluginWith怎么用?C# XrmFakedContext.ExecutePluginWith使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FakeXrmEasy.XrmFakedContext的用法示例。


在下文中一共展示了XrmFakedContext.ExecutePluginWith方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: XrmFakedContext

        public void When_the_followup_plugin_is_executed_for_an_account_after_create_it_should_create_a_new_task_with_a_regardingid()
        {
            var fakedContext = new XrmFakedContext();
            fakedContext.ProxyTypesAssembly = Assembly.GetExecutingAssembly(); //Needed to be able to return early bound entities

            var guid1 = Guid.NewGuid();
            var target = new Entity("account") { Id = guid1 };

            ParameterCollection inputParameters = new ParameterCollection();
            inputParameters.Add("Target", target);

            ParameterCollection outputParameters = new ParameterCollection();
            outputParameters.Add("id", guid1);

            fakedContext.ExecutePluginWith<FollowupPlugin>(inputParameters, outputParameters, null, null);

            //The plugin creates a followup activity, check that that one exists
            var tasks = (from t in fakedContext.CreateQuery<Task>()
                         select t).ToList();

            Assert.True(tasks.Count == 1);
            Assert.True(tasks[0].Subject.Equals("Send e-mail to the new customer."));
            Assert.True(tasks[0].RegardingObjectId != null && tasks[0].RegardingObjectId.Id.Equals(guid1));
        }
开发者ID:ccellar,项目名称:fake-xrm-easy,代码行数:24,代码来源:FakeContextTestPlugins.cs

示例2: When_getting_a_default_context_shared_variables_can_be_accessed_from_a_plugin

        public void When_getting_a_default_context_shared_variables_can_be_accessed_from_a_plugin()
        {
            var context = new XrmFakedContext();

            var pluginContext = context.GetDefaultPluginContext();
            pluginContext.SharedVariables.Add("key", "somevalue");

            Assert.DoesNotThrow(() =>context.ExecutePluginWith<TestSharedVariablesPropertyPlugin>(pluginContext));
        }
开发者ID:ccellar,项目名称:fake-xrm-easy,代码行数:9,代码来源:FakeContextTestPlugins.cs

示例3: When_Passing_In_No_Properties_Plugins_Only_Get_Default_Values

        public void When_Passing_In_No_Properties_Plugins_Only_Get_Default_Values()
        {
            var context = new XrmFakedContext();

            ParameterCollection inputParameters = new ParameterCollection();
            inputParameters.Add("Target", new Entity());

            var pluginContext = new XrmFakedPluginExecutionContext()
            {
                InputParameters = inputParameters,
                UserId = Guid.NewGuid(),
                InitiatingUserId = Guid.NewGuid()
            };

            //Parameters are defaulted now...
            Assert.DoesNotThrow(() => context.ExecutePluginWith<TestContextPlugin>(pluginContext));

            pluginContext = new XrmFakedPluginExecutionContext()
            {
                InputParameters = inputParameters,
                MessageName = "Create",
                InitiatingUserId = Guid.NewGuid()
            };


            Assert.DoesNotThrow(() => context.ExecutePluginWith<TestContextPlugin>(pluginContext));

            pluginContext = new XrmFakedPluginExecutionContext()
            {
                InputParameters = inputParameters,
                MessageName = "Update",
                UserId = Guid.NewGuid()
            };

            Assert.DoesNotThrow(() => context.ExecutePluginWith<TestContextPlugin>(pluginContext));
        }
开发者ID:ccellar,项目名称:fake-xrm-easy,代码行数:36,代码来源:FakeContextTestPlugins.cs

示例4: When_executing_a_plugin_primaryentityname_exists_in_the_context

        public void When_executing_a_plugin_primaryentityname_exists_in_the_context()
        {
            var context = new XrmFakedContext();

            var pluginContext = context.GetDefaultPluginContext();
            pluginContext.PrimaryEntityName = "Account";
            pluginContext.MessageName = "Create";
            pluginContext.Stage = 20;

            var entity = new Entity();
            context.ExecutePluginWith<PreAccountCreate>(pluginContext);

            Assert.True(true);
        }
开发者ID:ccellar,项目名称:fake-xrm-easy,代码行数:14,代码来源:FakeContextTestPlugins.cs

示例5: When_initializing_the_context_with_Properties_Plugins_Can_Access_It

        public void When_initializing_the_context_with_Properties_Plugins_Can_Access_It()
        {
            var context = new XrmFakedContext();

            ParameterCollection inputParameters = new ParameterCollection();
            inputParameters.Add("Target", new Entity());

            var plugCtx = context.GetDefaultPluginContext();
            plugCtx.MessageName = "Create";
            plugCtx.InputParameters = inputParameters;

            Assert.DoesNotThrow(() => context.ExecutePluginWith<TestContextPlugin>(plugCtx));
        }
开发者ID:ccellar,项目名称:fake-xrm-easy,代码行数:13,代码来源:FakeContextTestPlugins.cs


注:本文中的FakeXrmEasy.XrmFakedContext.ExecutePluginWith方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。