Fix another pile of Javadoc 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
788ddcbc 3 *
ff4ed569
FC
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
788ddcbc 8 *
ff4ed569
FC
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
54a7a54c
FC
25 /**
26 * @return the TMF Core test suite
27 */
d18dd09b
ASL
28 public static Test suite() {
29 TestSuite suite = new TestSuite(AllTmfCoreTests.class.getName());
30 //$JUnit-BEGIN$
cbd4ad82 31 suite.addTestSuite(TmfCorePluginTest.class);
6c13869b
FC
32 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.event.AllTests.suite());
33 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.request.AllTests.suite());
34 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.component.AllTests.suite());
35 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.trace.AllTests.suite());
6c13869b
FC
36 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.uml2sd.AllTests.suite());
37 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.util.AllTests.suite());
d18dd09b
ASL
38 //$JUnit-END$
39 return suite;
40 }
d18dd09b 41}
This page took 0.042698 seconds and 5 git commands to generate.