ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / statesystem / AllTests.java
index d6c151f0fa5acd8a1fb8eba85e95bab911294008..b51108aa40287482cfa8ba1bb3fcc3307f6bd5ca 100644 (file)
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2012 Ericsson
+ * Copyright (c) 2012, 2014 Ericsson
  *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
@@ -8,28 +8,21 @@
  *
  * Contributors:
  *   Alexandre Montplaisir - Initial API and implementation
- ******************************************************************************/
+ *******************************************************************************/
 
 package org.eclipse.linuxtools.tmf.core.tests.statesystem;
 
-import junit.framework.Test;
-import junit.framework.TestSuite;
-
-import org.eclipse.linuxtools.internal.tmf.core.Activator;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
 
 /**
- * Test suite for org.eclipse.linuxtools.tmf.core.statesystem
+ * Test suite for org.eclipse.linuxtools.tmf.core.tests.statesystem
  */
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+    ExperimentStateSystemModuleTest.class,
+    StateSystemAnalysisModuleTest.class
+})
 public class AllTests {
 
-    /**
-     * @return The state system test suite
-     */
-    public static Test suite() {
-        final TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".statesystem"); //$NON-NLS-1$ //$NON-NLS-2$;
-        //$JUnit-BEGIN$
-        suite.addTestSuite(StateSystemPushPopTest.class);
-        //$JUnit-END$
-        return suite;
-    }
-}
\ No newline at end of file
+}
This page took 0.034022 seconds and 5 git commands to generate.