Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.m2e.core.tests/src/org/eclipse/m2e/core/tests/AllTests.java')
-rw-r--r--org.eclipse.m2e.core.tests/src/org/eclipse/m2e/core/tests/AllTests.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/org.eclipse.m2e.core.tests/src/org/eclipse/m2e/core/tests/AllTests.java b/org.eclipse.m2e.core.tests/src/org/eclipse/m2e/core/tests/AllTests.java
new file mode 100644
index 00000000..3c1a3c87
--- /dev/null
+++ b/org.eclipse.m2e.core.tests/src/org/eclipse/m2e/core/tests/AllTests.java
@@ -0,0 +1,23 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Red Hat, Inc.
+ * 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:
+ * - Mickael Istria (Red Hat Inc.) - Initial implementation
+ *******************************************************************************/
+
+package org.eclipse.m2e.core.tests;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+
+@RunWith(Suite.class)
+@SuiteClasses({MavenBugsTest.class, RegistryTest.class})
+public class AllTests {
+
+}

Back to the top