1 /******************************************************************************* 2 * Copyright (c) 2000, 2006 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 * David Saff (saff@mit.edu) - bug 102632: [JUnit] Support for JUnit 4. 11 *******************************************************************************/ 12 13 package org.eclipse.jdt.internal.junit.runner; 14 15 import junit.framework.Test; 16 17 /** 18 * Strategy to prioritize a test suite 19 */ 20 public interface ITestPrioritizer { 21 /** 22 * Prioritize a test 23 * 24 * @param input tests to be prioritized 25 * @return the prioritized test suite 26 */ 27 Test prioritize(Test input); 28 } 29