Merge branch 'lttng-kepler'
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / statesystem / AllTests.java
1 /*******************************************************************************
2 * Copyright (c) 2012 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 * Alexandre Montplaisir - Initial API and implementation
11 ******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.core.tests.statesystem;
14
15 import junit.framework.Test;
16 import junit.framework.TestSuite;
17
18 import org.eclipse.linuxtools.internal.tmf.core.Activator;
19
20 /**
21 * Test suite for org.eclipse.linuxtools.tmf.core.statesystem
22 */
23 public class AllTests {
24
25 /**
26 * @return The state system test suite
27 */
28 public static Test suite() {
29 final TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".statesystem"); //$NON-NLS-1$ //$NON-NLS-2$;
30 //$JUnit-BEGIN$
31 suite.addTestSuite(StateSystemPushPopTest.class);
32 //$JUnit-END$
33 return suite;
34 }
35 }
This page took 0.033936 seconds and 6 git commands to generate.