示例#1
0
        private async Task DeleteDepartment_ShouldInvokeRepository_Async()
        {
            await _service.DeleteDepartmentAsync(_departmentMock.Object);

            _repositoryMock.Verify(x => x.DeleteAsync(_departmentMock.Object), Times.Once);
        }