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

Should_ReturnListOfUnassignedTasksInProjectWithId1() private method

        public void Should_ReturnListOfUnassignedTasksInProjectWithId1()
        {
            // act
            this.processorUnderTest.GetUnAssignedTasksForProject(1);

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