Ejemplo n.º 1
0
        public void TaskIsDisposed()
        {
            TestArgumentProvider arguments = new TestArgumentProvider();

            arguments.Command = "TaskIsDisposed";

            SimpleTaskRegistry taskRegistry = new SimpleTaskRegistry();
            TestTask           task         = new TestTask();

            taskRegistry.RegisterTask(() => task, "TaskIsDisposed");

            TaskExecution execution = Substitute.ForPartsOf <TaskExecution>(arguments, taskRegistry, null);

            execution.ExecuteTask();
            task.DisposeCount.Should().Be(1);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ArgumentProviderTest"/> class.
 /// </summary>
 public ArgumentProviderTest()
 {
     this.provider = Substitute.For <TestArgumentProvider>();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ArgumentProviderTest"/> class.
 /// </summary>
 public ArgumentProviderTest()
 {
   this.provider = Substitute.For<TestArgumentProvider>();
 }