public async Task GetToDoItems()
        {
            List <ToDoItemDto> toDoItemList = await _toDoItemRepository.GetAllByUser(1);

            int count = toDoItemList.Count;

            Assert.IsNotNull(toDoItemList);
            Assert.IsTrue(count >= 1);
        }