Merge remote-tracking branch 'origin/master' into lttng-kepler
[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
19 /**
20 * Test suite for statistic tests.
21 */
22 public class AllTests {
23
24 /**
25 * @return the test suite
26 */
27 public static Test suite() {
28 TestSuite suite = new TestSuite(AllTests.class.getName());
29 // $JUnit-BEGIN$
30 suite.addTestSuite(TmfBaseColumnDataProviderTest.class);
31 suite.addTestSuite(TmfBaseColumnDataTest.class);
32 suite.addTestSuite(TmfBaseStatisticsDataTest.class);
33 suite.addTestSuite(TmfStatisticsTreeNodeTest.class);
34 suite.addTestSuite(TmfStatisticsTreeRootFactoryTest.class);
35 suite.addTestSuite(TmfTreeContentProviderTest.class);
36 suite.addTestSuite(TmfStatisticsTest.class);
37 // $JUnit-END$
38 return suite;
39 }
40 }
This page took 0.033057 seconds and 6 git commands to generate.