Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.tests/src-gen/org/eclipse/emf/compare/tests/unit/DifferenceKindTest.java')
-rw-r--r--plugins/org.eclipse.emf.compare.tests/src-gen/org/eclipse/emf/compare/tests/unit/DifferenceKindTest.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.compare.tests/src-gen/org/eclipse/emf/compare/tests/unit/DifferenceKindTest.java b/plugins/org.eclipse.emf.compare.tests/src-gen/org/eclipse/emf/compare/tests/unit/DifferenceKindTest.java
new file mode 100644
index 000000000..4d7530781
--- /dev/null
+++ b/plugins/org.eclipse.emf.compare.tests/src-gen/org/eclipse/emf/compare/tests/unit/DifferenceKindTest.java
@@ -0,0 +1,58 @@
+package org.eclipse.emf.compare.tests.unit;
+
+import static junit.framework.Assert.assertNull;
+import static junit.framework.Assert.assertSame;
+
+import org.eclipse.emf.compare.DifferenceKind;
+import org.junit.Test;
+
+/**
+ * Tests the behavior of the {@link DifferenceKind} enumeration.
+ *
+ * @generated
+ */
+@SuppressWarnings("nls")
+public class DifferenceKindTest {
+ /**
+ * Tests the behavior of the {@link DifferenceKind#get(int)} method.
+ *
+ * @generated
+ */
+ @Test
+ public void testGetInt() {
+ int highestValue = -1;
+ for (DifferenceKind value : DifferenceKind.VALUES) {
+ assertSame(DifferenceKind.get(value.getValue()), value);
+ if (value.getValue() > highestValue) {
+ highestValue = value.getValue();
+ }
+ }
+ assertNull(DifferenceKind.get(++highestValue));
+ }
+
+ /**
+ * Tests the behavior of the {@link DifferenceKind#get(java.lang.String)} method.
+ *
+ * @generated
+ */
+ @Test
+ public void testGetString() {
+ for (DifferenceKind value : DifferenceKind.VALUES) {
+ assertSame(DifferenceKind.get(value.getLiteral()), value);
+ }
+ assertNull(DifferenceKind.get("ThisIsNotAValueOfTheTestedEnum"));
+ }
+
+ /**
+ * Tests the behavior of the {@link DifferenceKind#getByName(java.lang.String)} method.
+ *
+ * @generated
+ */
+ @Test
+ public void testGetByName() {
+ for (DifferenceKind value : DifferenceKind.VALUES) {
+ assertSame(DifferenceKind.getByName(value.getName()), value);
+ }
+ assertNull(DifferenceKind.getByName("ThisIsNotTheNameOfAValueFromTheTestedEnum"));
+ }
+}

Back to the top