blob: ffe743c7034cebb33aa50be9f72881e5c2c27c63 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Mylyn project committers and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.mylyn.tasks.tests;
import junit.framework.TestCase;
import org.eclipse.mylyn.internal.tasks.core.LocalTask;
import org.eclipse.mylyn.internal.tasks.core.TaskCategory;
import org.eclipse.mylyn.internal.tasks.ui.views.TaskListTableSorter;
import org.eclipse.mylyn.internal.tasks.ui.views.TaskListView;
import org.eclipse.mylyn.tasks.core.AbstractTask;
/**
* @author Mik Kersten
*/
public class TableSorterTest extends TestCase {
public void testRootTaskSorting() {
TaskListTableSorter sorter = new TaskListTableSorter(TaskListView.getFromActivePerspective(),
TaskListTableSorter.SortByIndex.SUMMARY);
AbstractTask task = new LocalTask("1", "");
TaskCategory category = new TaskCategory("cat");
assertEquals(-1, sorter.compare(null, task, category));
assertEquals(1, sorter.compare(null, category, task));
}
}