本文整理汇总了C#中NUnit.Framework.TestContext.Execute方法的典型用法代码示例。如果您正苦于以下问题:C# TestContext.Execute方法的具体用法?C# TestContext.Execute怎么用?C# TestContext.Execute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NUnit.Framework.TestContext
的用法示例。
在下文中一共展示了TestContext.Execute方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: stop_test_if_the_test_observer_trips_off_the_cannot_continue_condition
public void stop_test_if_the_test_observer_trips_off_the_cannot_continue_condition()
{
Test test = new Test("something").With(Section.For<SomethingFixture>()
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
.WithStep("DoSomething")
);
var observer = new MockTestObserver
{
StepsAllowed = 3
};
var context = new TestContext(new Container(), test, observer);
context.Execute();
observer.StepsRun.ShouldEqual(3);
observer.StepsRun = 0;
observer.StepsAllowed = 2;
context.Execute();
observer.StepsRun.ShouldEqual(2);
observer.StepsRun = 0;
observer.StepsAllowed = 200;
context.Execute();
observer.StepsRun.ShouldEqual(10);
}
示例2: capture_trace_and_debug_messages_to_the_Test_object
public void capture_trace_and_debug_messages_to_the_Test_object()
{
var test = new TracedTest();
test.ConsoleMessage("console1");
test.DebugMessage("debug1");
test.ConsoleMessage("console2");
test.DebugMessage("debug2");
var context = new TestContext(new Container(), test, new ConsoleListener());
context.Execute();
context.TraceText.ShouldContain("console1");
context.TraceText.ShouldContain("console2");
context.TraceText.ShouldContain("debug1");
context.TraceText.ShouldContain("debug2");
}
示例3: executing_calls_listener_before_and_after
public void executing_calls_listener_before_and_after()
{
var test = new Test("some test");
var listener = MockRepository.GenerateMock<ITestObserver>();
var context = new TestContext(new Container(), test, listener);
context.Execute();
listener.AssertWasCalled(x => x.StartTest(test, context.Counts));
listener.AssertWasCalled(x => x.FinishTest(test));
}