BinaryStudio.TaskManager.Logic.Tests.TaskProcessorTests.Should_ReturnHistoryForTaskWithId1InProject C# (CSharp) Méthode

Should_ReturnHistoryForTaskWithId1InProject() private méthode

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

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