Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8d8ce22159df39462d965cffc3e96c4a107a3dfb (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
34
35
36
37
38
39
/*******************************************************************************
 * 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;


/**
 * Test suite for statistic tests.
 */
public class AllTests {

    /**
     * @return the test suite
     */
    public static Test suite() {
        TestSuite suite = new TestSuite(AllTests.class.getName());
        // $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