Internalize some classes and fix a pile of warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / 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
6c13869b 13package org.eclipse.linuxtools.tmf.core.tests;
d18dd09b
ASL
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);
6c13869b
FC
29 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.event.AllTests.suite());
30 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.request.AllTests.suite());
31 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.component.AllTests.suite());
32 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.trace.AllTests.suite());
6c13869b
FC
33 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.uml2sd.AllTests.suite());
34 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.util.AllTests.suite());
d18dd09b
ASL
35 //$JUnit-END$
36 return suite;
37 }
d18dd09b 38}
This page took 0.038995 seconds and 5 git commands to generate.