TMF: Do not keep event matches by default when no processing unit is set
[deliverable/tracecompass.git] / org.eclipse.linuxtools.ctf.core.tests / src / org / eclipse / linuxtools / ctf / core / tests / types / TestAll.java
index 5e6cba8fe467c3406959c134c951ff9c27c83777..7b537be19030a66a1b8007b83e0e50d9450807e8 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.types;
 
-import org.junit.runner.JUnitCore;
 import org.junit.runner.RunWith;
 import org.junit.runners.Suite;
 
@@ -8,28 +18,32 @@ 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 $
  */
 @RunWith(Suite.class)
-@Suite.SuiteClasses({ StructDefinitionTest.class, IntegerDeclarationTest.class,
-        EnumDefinitionTest.class, SequenceDeclarationTest.class,
-        StructDeclarationTest.class, DefinitionTest.class,
-        IntegerDefinitionTest.class, SequenceDefinitionTest.class,
-        ArrayDefinitionTest.class, EnumDeclarationTest.class,
-        StringDeclarationTest.class, ArrayDeclarationTest.class,
-        VariantDefinitionTest.class, VariantDeclarationTest.class,
-        StringDefinitionTest.class, EventDeclarationTest.class, })
+@Suite.SuiteClasses({
+    ArrayDeclaration2Test.class,
+    ArrayDefinition2Test.class,
+    DefinitionTest.class,
+    EnumDeclarationTest.class,
+    EnumDefinitionTest.class,
+    EventDeclarationTest.class,
+    FloatDeclarationTest.class,
+    FloatDefinitionTest.class,
+    IntegerDeclarationTest.class,
+    IntegerDefinitionTest.class,
+    IntegerEndiannessTest.class,
+    SequenceDeclaration2Test.class,
+    SequenceDefinition2Test.class,
+    StringDeclarationTest.class,
+    StringDefinitionTest.class,
+    StructDeclarationTest.class,
+    StructDefinitionTest.class,
+    VariantDeclarationTest.class,
+    VariantDefinitionTest.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.02447 seconds and 5 git commands to generate.