Bug 455281 - [Model] ModelServiceImpl.findElements(*) does not filter parts from outside perspective

Missed ModelReconcilerTestSuite.suite() during the JUnit3 -> JUnit4
conversion.
diff --git a/tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerTestSuite.java b/tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerTestSuite.java
index f542850..f5fffcb 100644
--- a/tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerTestSuite.java
+++ b/tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/reconciler/ModelReconcilerTestSuite.java
@@ -14,7 +14,9 @@
 import junit.framework.Test;
 import junit.framework.TestSuite;
 import org.eclipse.e4.ui.tests.reconciler.xml.XMLModelReconcilerTestSuite;
+import org.junit.runner.RunWith;
 
+@RunWith(org.junit.runners.AllTests.class)
 public class ModelReconcilerTestSuite extends TestSuite {
 
 	public static Test suite() {