Merge branch 'master' into lttng-kepler
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / AllTmfUITests.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2012 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 *
23 * Master test suite for TMF UI Core.
24 */
25 public class AllTmfUITests {
26
27 /**
28 * @return the TMF UI test suite
29 */
30 public static Test suite() {
31 TestSuite suite = new TestSuite(AllTmfUITests.class.getName());
32 // $JUnit-BEGIN$
33 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.statistics.AllTests.suite());
34 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.dialogs.AllTests.suite());
35 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.loader.AllTests.suite());
36 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.load.AllTests.suite());
37 suite.addTest(org.eclipse.linuxtools.tmf.ui.tests.histogram.AllTests.suite());
38 // $JUnit-END$
39 return suite;
40 }
41 }
This page took 0.032719 seconds and 6 git commands to generate.