Generalize and move the Histogram view from LTTng to TMF
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / AllTmfUITests.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 * Bernd Hufmann - Initial API and implementation
11 * Bernd Hufmann - Add UML2SD tests
12 * Mathieu Denis (mathieu.denis@polymtl.ca) - Add Statistics test
13 *******************************************************************************/
14
15 package org.eclipse.linuxtools.tmf.ui.tests;
16
17 import junit.framework.Test;
18 import junit.framework.TestSuite;
19
20 /**
21 * <b><u>AllTmfUITests</u></b>
22 * <p>
23 * Master test suite for TMF UI Core.
24 */
25 public class AllTmfUITests {
26
27 public static Test suite() {
28 TestSuite suite = new TestSuite(AllTmfUITests.class.getName());
29 //$JUnit-BEGIN$
30 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.statistics.AllTests.suite());
31 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.handlers.widgets.AllTests.suite());
32 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.impl.AllTests.suite());
33 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.load.AllTests.suite());
34 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.histogram.AllTests.suite());
35 //$JUnit-END$
36 return suite;
37 }
38 }
This page took 0.040413 seconds and 6 git commands to generate.