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

Should_ReturnListOfTasksForProjectByItsId() private method

private Should_ReturnListOfTasksForProjectByItsId ( ) : void
return void
        public void Should_ReturnListOfTasksForProjectByItsId()
        {
            // act
            this.processorUnderTest.GetAllTasksInProject(1);

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