本文整理汇总了C#中Scenario.Execute方法的典型用法代码示例。如果您正苦于以下问题:C# Scenario.Execute方法的具体用法?C# Scenario.Execute怎么用?C# Scenario.Execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Scenario
的用法示例。
在下文中一共展示了Scenario.Execute方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Execute
public static void Execute(Scenario scenario, Actor actor)
{
Precondition.Requires(
scenario != null,
Properties.Resources.USE_CASE_SCENARIO_CANNOT_BE_NULL
);
Precondition.Requires(
actor != null,
Properties.Resources.USE_CASE_ACTOR_CANNOT_BE_NULL
);
try
{
if (!scenario.Authorize(actor))
{
throw new AuthorizationException(Properties.Resources.USER_AUTHORIZATION_FAILED);
}
scenario.Execute();
}
catch (DomainException)
{
throw;
}
catch (Exception exc)
{
throw new DomainException(exc.Message, exc);
}
}
示例2: SetUp
public void SetUp()
{
mocks = new MockRepository();
actor = mocks.StrictMock<Actor>();
scenario = mocks.StrictMock<Scenario>();
exception = new Exception("error");
Rhino.Mocks.Expect
.Call(scenario.Authorize(actor))
.Return(true);
scenario.Execute();
LastCall.Throw(exception);
mocks.ReplayAll();
}
开发者ID:renatius,项目名称:ClearCut,代码行数:15,代码来源:When_executing_use_case_if_scenario_execute_raises_a_non_domain_exception.cs