fixed tests
diff --git a/tests/org.eclipse.mylyn.docs.intent.compare.test/pom.xml b/tests/org.eclipse.mylyn.docs.intent.compare.test/pom.xml
index d25988f..b89befa 100644
--- a/tests/org.eclipse.mylyn.docs.intent.compare.test/pom.xml
+++ b/tests/org.eclipse.mylyn.docs.intent.compare.test/pom.xml
@@ -33,7 +33,7 @@
       	<version>${tycho-version}</version>
       	<configuration>
       		<includes>
-      			<include>org/eclipse/mylyn/docs/intent/compare/test/unit/MergingIssues.class</include>
+      			<include>org/eclipse/mylyn/docs/intent/compare/test/suite/TestCompareSuite.class</include>
      		 </includes>
       		<testIgnoreFailure>true</testIgnoreFailure>
      		<testFailureIgnore>true</testFailureIgnore>
diff --git a/tests/org.eclipse.mylyn.docs.intent.compare.test/src/org/eclipse/mylyn/docs/intent/compare/test/suite/TestCompareSuite.java b/tests/org.eclipse.mylyn.docs.intent.compare.test/src/org/eclipse/mylyn/docs/intent/compare/test/suite/TestCompareSuite.java
new file mode 100644
index 0000000..a175849
--- /dev/null
+++ b/tests/org.eclipse.mylyn.docs.intent.compare.test/src/org/eclipse/mylyn/docs/intent/compare/test/suite/TestCompareSuite.java
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2012 Obeo.
+ * 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:
+ *     Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.mylyn.docs.intent.compare.test.suite;
+
+import org.eclipse.mylyn.docs.intent.compare.test.unit.MergingIssues;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+/**
+ * Launch all the test files related to emf compare tests.
+ * 
+ * @author <a href="mailto:william.piers@obeo.fr">William Piers</a>
+ */
+@RunWith(Suite.class)
+@Suite.SuiteClasses({MergingIssues.class,
+
+})
+public class TestCompareSuite {
+
+}