Rename xxx.lttng to xxx.lttng.core
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.tests / src / org / eclipse / linuxtools / tmf / tests / AllTmfCoreTests.java
CommitLineData
ff4ed569
FC
1/*******************************************************************************
2 * Copyright (c) 2009, 2010 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 * Francois Chouinard - Initial API and implementation
11 *******************************************************************************/
12
d18dd09b
ASL
13package org.eclipse.linuxtools.tmf.tests;
14
15import junit.framework.Test;
16import junit.framework.TestSuite;
17
ff4ed569
FC
18/**
19 * <b><u>AllTmfCoreTests</u></b>
20 * <p>
21 * Master test suite for TMF Core.
22 */
d18dd09b
ASL
23public class AllTmfCoreTests {
24
25 public static Test suite() {
26 TestSuite suite = new TestSuite(AllTmfCoreTests.class.getName());
27 //$JUnit-BEGIN$
cbd4ad82 28 suite.addTestSuite(TmfCorePluginTest.class);
ff4ed569
FC
29 suite.addTest(org.eclipse.linuxtools.tmf.tests.event.AllTests.suite());
30 suite.addTest(org.eclipse.linuxtools.tmf.tests.request.AllTests.suite());
31 suite.addTest(org.eclipse.linuxtools.tmf.tests.component.AllTests.suite());
32 suite.addTest(org.eclipse.linuxtools.tmf.tests.trace.AllTests.suite());
cb866e08 33 suite.addTest(org.eclipse.linuxtools.tmf.tests.experiment.AllTests.suite());
73005152 34 suite.addTest(org.eclipse.linuxtools.tmf.tests.uml2sd.AllTests.suite());
79e08fd0 35 suite.addTest(org.eclipse.linuxtools.tmf.tests.util.AllTests.suite());
d18dd09b
ASL
36 //$JUnit-END$
37 return suite;
38 }
d18dd09b 39}
This page took 0.0279 seconds and 5 git commands to generate.