2010-06-05 fchouinard@gmail.com Contributions for bugs 292965, 292963, 293102,...
[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());
d18dd09b
ASL
34 //$JUnit-END$
35 return suite;
36 }
37
38}
This page took 0.026613 seconds and 5 git commands to generate.