1 /*******************************************************************************
2 * Copyright (c) 2011 Ericsson
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
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
;
15 import junit
.framework
.Test
;
16 import junit
.framework
.TestSuite
;
20 * Test suite for statistic tests.
22 public class AllTests
{
25 * @return the test suite
27 public static Test
suite() {
28 TestSuite suite
= new TestSuite(AllTests
.class.getName());
30 suite
.addTestSuite(TmfBaseColumnDataProviderTest
.class);
31 suite
.addTestSuite(TmfBaseColumnDataTest
.class);
32 suite
.addTestSuite(TmfBaseStatisticsDataTest
.class);
33 suite
.addTestSuite(TmfStatisticsTreeNodeTest
.class);
34 suite
.addTestSuite(TmfStatisticsTreeManagerTest
.class);
35 suite
.addTestSuite(TmfTreeContentProviderTest
.class);
36 suite
.addTestSuite(TmfStatisticsTest
.class);