TMF: Add tmf.ui unit tests for project model
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / AllTmfUITests.java
CommitLineData
79e08fd0 1/*******************************************************************************
90ed5958 2 * Copyright (c) 2011-2013 Ericsson
64636df8 3 *
79e08fd0
BH
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
64636df8 8 *
79e08fd0
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 * Bernd Hufmann - Add UML2SD tests
09667aa4 12 * Mathieu Denis <mathieu.denis@polymtl.ca> - Add Statistics test
90ed5958 13 * Alexandre Montplaisir - Port to JUnit4
79e08fd0
BH
14 *******************************************************************************/
15
73005152
BH
16package org.eclipse.linuxtools.tmf.ui.tests;
17
90ed5958
AM
18import org.junit.runner.RunWith;
19import org.junit.runners.Suite;
73005152 20
79e08fd0 21/**
79e08fd0
BH
22 * Master test suite for TMF UI Core.
23 */
90ed5958
AM
24@RunWith(Suite.class)
25@Suite.SuiteClasses({
26 org.eclipse.linuxtools.tmf.ui.tests.histogram.AllTests.class,
87644443 27 org.eclipse.linuxtools.tmf.ui.tests.project.model.AllTests.class,
90ed5958
AM
28 org.eclipse.linuxtools.tmf.ui.tests.statistics.AllTests.class,
29 org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.dialogs.AllTests.class,
30 org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.load.AllTests.class,
31 org.eclipse.linuxtools.tmf.ui.tests.views.uml2sd.loader.AllTests.class
32})
79e08fd0
BH
33public class AllTmfUITests {
34
73005152 35}
This page took 0.050453 seconds and 5 git commands to generate.