public void TodoFindByIdTest() { // Arrange int todoId = 1; int todoId2 = 2; int todoId3 = 3; TodoItems todo = new TodoItems(); TodoSequencer.Reset(); todo.NewTodoItem("Do this"); todo.NewTodoItem("Do that"); // Act Todo actual = todo.FindByIdTodo(todoId); Todo actual2 = todo.FindByIdTodo(todoId2); Todo actual3 = todo.FindByIdTodo(todoId3); // Assert Assert.Contains("Do this", actual.ToDoInformation()); Assert.Contains("Do that", actual2.ToDoInformation()); Assert.True(actual3 == null); }