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

Should_ReturnAllClosedTasksInProjectWithId1() private method

private Should_ReturnAllClosedTasksInProjectWithId1 ( ) : void
return void
        public void Should_ReturnAllClosedTasksInProjectWithId1()
        {
            // arrange
            this.mockHumanTaskRepository.Setup(x => x.GetAllTasksInProject(1)).Returns(new List<HumanTask>());

            // act
            this.processorUnderTest.GetAllClosedTasksForProject(1);

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