Copyright header update, 2015 edition
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui.tests / src / org / eclipse / tracecompass / tmf / ui / tests / statistics / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2014 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 * Alexandre Montplaisir - Port to JUnit4
13 *******************************************************************************/
14
15 package org.eclipse.tracecompass.tmf.ui.tests.statistics;
16
17 import org.junit.runner.RunWith;
18 import org.junit.runners.Suite;
19
20 /**
21 * Test suite for statistic tests.
22 */
23 @RunWith(Suite.class)
24 @Suite.SuiteClasses({
25 TmfBaseColumnDataProviderTest.class,
26 TmfBaseColumnDataTest.class,
27 TmfBaseStatisticsDataTest.class,
28 TmfStatisticsTest.class,
29 TmfStatisticsTreeNodeTest.class,
30 TmfStatisticsTreeManagerTest.class,
31 TmfTreeContentProviderTest.class
32 })
33 public class AllTests {
34
35 }
This page took 0.033624 seconds and 5 git commands to generate.