Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.core.test/src/org/eclipse/egit/core/op/ConfigureGerritAfterCloneMatcherTest.java')
-rw-r--r--org.eclipse.egit.core.test/src/org/eclipse/egit/core/op/ConfigureGerritAfterCloneMatcherTest.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/org.eclipse.egit.core.test/src/org/eclipse/egit/core/op/ConfigureGerritAfterCloneMatcherTest.java b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/op/ConfigureGerritAfterCloneMatcherTest.java
new file mode 100644
index 0000000000..6e88600203
--- /dev/null
+++ b/org.eclipse.egit.core.test/src/org/eclipse/egit/core/op/ConfigureGerritAfterCloneMatcherTest.java
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (C) 2018, Markus Duft <markus.duft@ssi-schaefer.com>
+ *
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *******************************************************************************/
+package org.eclipse.egit.core.op;
+
+import static org.eclipse.egit.core.op.ConfigureGerritAfterCloneTask.isGerritVersion;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class ConfigureGerritAfterCloneMatcherTest {
+
+ @Test
+ public void testMatches() {
+ assertTrue(isGerritVersion(
+ "gerrit version 2.15.3-5016-g7169461907-dirty"));
+ assertTrue(isGerritVersion("gerrit version 2.14.6"));
+ assertTrue(isGerritVersion("gerrit version 2.14.6-6-g7f3d26c65a"));
+ assertTrue(isGerritVersion("gerrit version 2.16-rc1-81-gfbf1af9b73"));
+ }
+
+}

Back to the top