The following sample deletes an existing task.
//for this sample it is assumed that a task record exists with a unique key String equal to uniqueKey
protected TaskRepository taskRepository;
public void test_deleteTask() throws Exception {
taskRepository.deleteTask(uniqueKey);
}