예제 #1
0
 public void TestCompleteTodoItem(int id)
 {
     todoItemService.CompleteTodoItem(id);
     Assert.That(todoItems.FirstOrDefault(todo => todo.Id == id).IsCompleted, Is.EqualTo(true));
 }