Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d55cae3c8e84e853fa6b9c380c06d5973e59ac65 (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
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2011 Ericsson
 * 
 * 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:
 *   Mathieu Denis (mathieu.denis@polymtl.ca) - Initial API and Implementation
 *   Bernd Hufmann - Fixed suite name
 *******************************************************************************/
package org.eclipse.linuxtools.tmf.ui.tests.statistics;

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

@SuppressWarnings("nls")
public class AllTests {

	public static Test suite() {
		TestSuite suite = new TestSuite(AllTests.class.getName()); //$NON-NLS-1$);
		//$JUnit-BEGIN$
		suite.addTestSuite(TmfBaseColumnDataProviderTest.class);
		suite.addTestSuite(TmfBaseColumnDataTest.class);
		suite.addTestSuite(TmfBaseStatisticsDataTest.class);
		suite.addTestSuite(TmfStatisticsTreeNodeTest.class);
		suite.addTestSuite(TmfStatisticsTreeRootFactoryTest.class);
		suite.addTestSuite(TmfTreeContentProviderTest.class);
		//$JUnit-END$
		return suite;
	}
}

Back to the top