BinaryStudio.TaskManager.Logic.Tests.TaskProcessorTests.Should_ReturnHistoryForTaskWithId1InProject C# (CSharp) Method

Should_ReturnHistoryForTaskWithId1InProject() private method

private Should_ReturnHistoryForTaskWithId1InProject ( ) : void
return void
        public void Should_ReturnHistoryForTaskWithId1InProject()
        {
            // act
            this.processorUnderTest.GetAllHistoryForTask(1);

            // assert
            this.mockHumanTaskRepository.Verify(it => it.GetAllHistoryForTask(1), Times.Once());
        }