Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/unit/diff/DiffTestSuite.java')
-rw-r--r--plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/unit/diff/DiffTestSuite.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/unit/diff/DiffTestSuite.java b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/unit/diff/DiffTestSuite.java
new file mode 100644
index 000000000..3dbc40057
--- /dev/null
+++ b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/unit/diff/DiffTestSuite.java
@@ -0,0 +1,52 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2009 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.emf.compare.tests.unit.diff;
+
+import junit.framework.Test;
+import junit.framework.TestCase;
+import junit.framework.TestSuite;
+import junit.textui.TestRunner;
+
+/**
+ * Tests for the diff plugin.
+ *
+ * @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a>
+ */
+public class DiffTestSuite extends TestCase {
+ /** Minimal -Xmx setting to run comparison tests. Set to 500m. */
+ private static final long MIN_XMX_SETTING = 500000000;
+
+ /**
+ * Launches the test with the given arguments.
+ *
+ * @param args
+ * Arguments of the testCase.
+ */
+ public static void main(String[] args) {
+ TestRunner.run(suite());
+ }
+
+ /**
+ * Creates the {@link junit.framework.TestSuite TestSuite} for all the test.
+ *
+ * @return The testsuite containing all the tests
+ */
+ public static Test suite() {
+ final TestSuite suite = new TestSuite("Tests for the diff plugin."); //$NON-NLS-1$
+ // These tests are too long/costly to be run with too low memory
+ if (Runtime.getRuntime().maxMemory() > MIN_XMX_SETTING) {
+ suite.addTestSuite(ThreeWayDiffTest.class);
+ suite.addTestSuite(TwoWayDiffTest.class);
+ }
+ suite.addTestSuite(MessagesTest.class);
+ return suite;
+ }
+}

Back to the top