Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2451ff72250861418bab9b7a212ca3aacdbf7daa (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
29
/*******************************************************************************
 * Copyright (c) 2009 Red Hat, Inc.
 * 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:
 *    Kent Sebastian <ksebasti@redhat.com> - initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.oprofile.launch.tests;

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

public class AllLaunchTests {

	public static Test suite() {
		TestSuite suite = new TestSuite("Test for org.eclipse.linuxtools.oprofile.launch.tests"); //$NON-NLS-1$

		suite.addTestSuite(TestLaunching.class);
		suite.addTestSuite(TestManualLaunching.class);
		suite.addTestSuite(TestSetup.class);
		suite.addTestSuite(TestLaunchingExternalProject.class);
		suite.addTestSuite(TestDummy.class);

		return suite;
	}
}

Back to the top