Added TMF statistics feature (Bug 360572)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / statistics / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2011 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Mathieu Denis (mathieu.denis@polymtl.ca) - Initial API and Implementation
11 * Bernd Hufmann - Fixed suite name
12 *******************************************************************************/
13 package org.eclipse.linuxtools.tmf.ui.tests.statistics;
14
15 import junit.framework.Test;
16 import junit.framework.TestSuite;
17
18 @SuppressWarnings("nls")
19 public class AllTests {
20
21 public static Test suite() {
22 TestSuite suite = new TestSuite(AllTests.class.getName()); //$NON-NLS-1$);
23 //$JUnit-BEGIN$
24 suite.addTestSuite(TmfBaseColumnDataProviderTest.class);
25 suite.addTestSuite(TmfBaseColumnDataTest.class);
26 suite.addTestSuite(TmfBaseStatisticsDataTest.class);
27 suite.addTestSuite(TmfStatisticsTreeNodeTest.class);
28 suite.addTestSuite(TmfStatisticsTreeRootFactoryTest.class);
29 suite.addTestSuite(TmfTreeContentProviderTest.class);
30 //$JUnit-END$
31 return suite;
32 }
33 }
This page took 0.033518 seconds and 5 git commands to generate.