gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.kernel.core.tests / src / org / eclipse / linuxtools / lttng2 / kernel / core / tests / stateprovider / TestAll.java
index e53f2e8cbd3f54341fb16436153b7c0306ce311d..a6c1d589263996514abb48df4b2d8ba55383b6e6 100644 (file)
@@ -1,41 +1,30 @@
 /*******************************************************************************
- * Copyright (c) 2012 Ericsson
- * 
+ * Copyright (c) 2012, 2013 Ericsson
+ *
  * All rights reserved. This program and the accompanying materials are
  * made available under the terms of the Eclipse Public License v1.0 which
  * accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * 
+ *
  * Contributors:
  *   Alexandre Montplaisir - Initial implementation
  ******************************************************************************/
 
 package org.eclipse.linuxtools.lttng2.kernel.core.tests.stateprovider;
 
-import org.junit.runner.JUnitCore;
 import org.junit.runner.RunWith;
 import org.junit.runners.Suite;
 
 /**
- * The class <code>TestAll</code> builds a suite that can be used to run all of
- * the tests within its package as well as within any subpackages of its
- * package.
- * 
- * @author ematkho
- * @version $Revision: 1.0 $
+ * Runner for the LTTng kernel state system tests.
  */
 @RunWith(Suite.class)
-@Suite.SuiteClasses({ CTFDummyInputTest.class, CTFKernelStateInputTest.class,
-    StateSystemFullHistoryTest.class, StateSystemFullThreadedHistoryTest.class})
+@Suite.SuiteClasses({
+    LttngKernelStateProviderTest.class,
+    PartialStateSystemTest.class,
+    StateSystemFullHistoryTest.class,
+    StateSystemInMemoryTest.class
+})
 public class TestAll {
 
-    /**
-     * Launch the test.
-     * 
-     * @param args
-     *            the command line arguments
-     */
-    public static void main(String[] args) {
-        JUnitCore.runClasses(new Class[] { TestAll.class });
-    }
 }
This page took 0.036531 seconds and 5 git commands to generate.