ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / util / AllTests.java
index 3f49f21119fdf05361926e6e2f0355d77ea98890..172d2b44a1a4efa1c0cf5d48ca461d1fdc96a08b 100644 (file)
@@ -1,26 +1,27 @@
-package org.eclipse.linuxtools.tmf.core.tests.util;
+/*******************************************************************************
+ * 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:
+ *   Alexandre Montplaisir - Port to JUnit4
+ *******************************************************************************/
 
-import junit.framework.Test;
-import junit.framework.TestSuite;
+package org.eclipse.linuxtools.tmf.core.tests.util;
 
-import org.eclipse.linuxtools.internal.tmf.core.Activator;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
 
 /**
- * <b><u>AllTests</u></b>
- * <p>
- * <p>
+ * Unit tests for tmf.core.util
  */
-@SuppressWarnings({ "nls" })
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+    PairTest.class
+})
 public class AllTests {
 
-       /**
-        * @return the test suite
-        */
-       public static Test suite() {
-               TestSuite suite = new TestSuite("Test suite for " + Activator.PLUGIN_ID + ".util"); //$NON-NLS-1$);
-               //$JUnit-BEGIN$
-               suite.addTestSuite(PairTest.class);
-               //$JUnit-END$
-               return suite;
-       }
 }
\ No newline at end of file
This page took 0.031351 seconds and 5 git commands to generate.