public async Task GetTodoList() { int todoListId = 1; HttpResult <TodoList> result = await client.GetTodoListAsync(todoListId); Assert.IsNotNull(result, "Result is null"); Assert.IsTrue(result.Succeeded, GetRequestFailedMessage(result)); Assert.AreEqual(result.Content.TodoListId, todoListId, "Received wrong todo list"); }