Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4416e3eebb2b26e189af313770e80a3ad34e3fa7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation 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
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.compare.tests.performance;

import junit.framework.Test;
import junit.framework.TestSuite;

/**
 * @since 3.1
 */
public class PerformanceTestSuite extends TestSuite {

	public static Test suite() {
		TestSuite suite= new TestSuite("Compare performance tests"); //$NON-NLS-1$
		//$JUnit-BEGIN$
		suite.addTestSuite(RangeDifferencerTest.class);
		//$JUnit-END$
		return suite;
	}
}

Back to the top