ctf: Make events immutable
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / AllCtfCoreTests.java
index 34bc3dc329505cd674ea81cbfd203864bed990c4..c096537d72e218124a538a35e7214904ca30e673 100644 (file)
@@ -1,6 +1,16 @@
+/*******************************************************************************
+ * Copyright (c) 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:
+ *     Matthew Khouzam - Initial API and implementation
+ *******************************************************************************/
+
 package org.eclipse.linuxtools.ctf.core.tests;
 
-import org.junit.runner.JUnitCore;
 import org.junit.runner.RunWith;
 import org.junit.runners.Suite;
 
@@ -10,31 +20,17 @@ import org.junit.runners.Suite;
  * package.
  *
  * @author ematkho
- * @version $Revision: 1.0 $
+ * @version 1.0
  */
 @RunWith(Suite.class)
-@Suite.SuiteClasses({ CtfCorePluginTest.class,
-    org.eclipse.linuxtools.ctf.core.tests.io.TestAll.class,
-    org.eclipse.linuxtools.ctf.core.tests.types.TestAll.class,
-    org.eclipse.linuxtools.ctf.core.tests.trace.TestAll.class,
-    org.eclipse.linuxtools.ctf.core.tests.trace.UtilsTest.class,
-    //  org.eclipse.linuxtools.ctf.core.tests.event.TestAll.class,
+@Suite.SuiteClasses({
+        CtfCorePluginTest.class,
+        org.eclipse.linuxtools.ctf.core.tests.ctftestsuite.TestAll.class,
+        org.eclipse.linuxtools.ctf.core.tests.event.TestAll.class,
+        org.eclipse.linuxtools.ctf.core.tests.io.TestAll.class,
+        org.eclipse.linuxtools.ctf.core.tests.scope.TestAll.class,
+        org.eclipse.linuxtools.ctf.core.tests.trace.TestAll.class,
+        org.eclipse.linuxtools.ctf.core.tests.types.TestAll.class
 })
 public class AllCtfCoreTests {
-
-    /**
-     * Launch the test.
-     *
-     * @param args
-     *            the command line arguments
-     */
-    public static void main(final String[] args) {
-        // try {
-        // ProfileMe.prof_s();
-        // } catch (Exception e) {
-        // // TODO Auto-generated catch block
-        // e.printStackTrace();
-        // }
-        JUnitCore.runClasses(new Class[] { AllCtfCoreTests.class });
-    }
 }
This page took 0.024605 seconds and 5 git commands to generate.