Fix another pile of Javadoc warnings
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / AllTmfCoreTests.java
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
13 package org.eclipse.linuxtools.tmf.core.tests;
14
15 import junit.framework.Test;
16 import junit.framework.TestSuite;
17
18 /**
19 * <b><u>AllTmfCoreTests</u></b>
20 * <p>
21 * Master test suite for TMF Core.
22 */
23 public class AllTmfCoreTests {
24
25 /**
26 * @return the TMF Core test suite
27 */
28 public static Test suite() {
29 TestSuite suite = new TestSuite(AllTmfCoreTests.class.getName());
30 //$JUnit-BEGIN$
31 suite.addTestSuite(TmfCorePluginTest.class);
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());
36 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.uml2sd.AllTests.suite());
37 suite.addTest(org.eclipse.linuxtools.tmf.core.tests.util.AllTests.suite());
38 //$JUnit-END$
39 return suite;
40 }
41 }
This page took 0.032697 seconds and 6 git commands to generate.