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

Should_ReturnListOfUnassignedTasksInProjectWithId1() private méthode

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

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