Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/plugins/uml/expressions/org.eclipse.papyrus.uml.expressions.tests/src/org/eclipse/papyrus/uml/expressions/tests/HasAppliedStereotypeExpressionTests.java')
-rwxr-xr-xtests/junit/plugins/uml/expressions/org.eclipse.papyrus.uml.expressions.tests/src/org/eclipse/papyrus/uml/expressions/tests/HasAppliedStereotypeExpressionTests.java107
1 files changed, 107 insertions, 0 deletions
diff --git a/tests/junit/plugins/uml/expressions/org.eclipse.papyrus.uml.expressions.tests/src/org/eclipse/papyrus/uml/expressions/tests/HasAppliedStereotypeExpressionTests.java b/tests/junit/plugins/uml/expressions/org.eclipse.papyrus.uml.expressions.tests/src/org/eclipse/papyrus/uml/expressions/tests/HasAppliedStereotypeExpressionTests.java
new file mode 100755
index 00000000000..30cd3523e47
--- /dev/null
+++ b/tests/junit/plugins/uml/expressions/org.eclipse.papyrus.uml.expressions.tests/src/org/eclipse/papyrus/uml/expressions/tests/HasAppliedStereotypeExpressionTests.java
@@ -0,0 +1,107 @@
+/*****************************************************************************
+ * Copyright (c) 2017 CEA LIST.
+ *
+ *
+ * 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:
+ * Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
+ *
+ *****************************************************************************/
+
+package org.eclipse.papyrus.uml.expressions.tests;
+
+import org.eclipse.emf.ecore.EObject;
+import org.eclipse.emf.ecore.EcoreFactory;
+import org.eclipse.papyrus.junit.utils.rules.PapyrusEditorFixture;
+import org.eclipse.papyrus.junit.utils.rules.PluginResource;
+import org.eclipse.papyrus.uml.expressions.umlexpressions.HasAppliedStereotypesExpression;
+import org.eclipse.papyrus.uml.expressions.umlexpressions.UMLExpressionsFactory;
+import org.eclipse.uml2.uml.Class;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+
+/**
+ * Tests for {@link HasAppliedStereotypesExpression}
+ *
+ */
+@PluginResource("resources/expressionModelTest.di") //$NON-NLS-1$
+public class HasAppliedStereotypeExpressionTests {
+
+ private final EObject dummyEObject = EcoreFactory.eINSTANCE.createEClass();
+
+ private final String STEREOTYPED_CLASS_WITH_URI_NAME = "StereotypedWithURIClass"; //$NON-NLS-1$
+
+ private final String NOT_STEREOTYPED_CLASS_NAME = "NoStereotypedClass"; //$NON-NLS-1$
+
+ private Class stereotypedClassWithURI;
+
+ private Class notStereotypedClass;
+
+
+
+ @Rule
+ public final PapyrusEditorFixture fixture = new PapyrusEditorFixture();
+
+
+ @Before
+ public void init() {
+ stereotypedClassWithURI = (Class) fixture.getModel().getMember(STEREOTYPED_CLASS_WITH_URI_NAME);
+ notStereotypedClass = (Class) fixture.getModel().getMember(NOT_STEREOTYPED_CLASS_NAME);
+ }
+
+
+
+ /**
+ * The method evaluates must return <code>false</code> for
+ * <ul>
+ * <li>context is <code>null</code></li>
+ * </ul>
+ */
+ @Test
+ public void HasStereotypeExpressionTests_Test1() {
+ final HasAppliedStereotypesExpression exp = UMLExpressionsFactory.eINSTANCE.createHasAppliedStereotypesExpression();
+ Assert.assertFalse(exp.evaluate(null));
+ }
+
+ /**
+ * The method evaluates must return <code>false</code> for
+ * <ul>
+ * <li>context is an EObject</li>
+ * </ul>
+ */
+ @Test
+ public void HasStereotypeExpressionTests_Test2() {
+ final HasAppliedStereotypesExpression exp = UMLExpressionsFactory.eINSTANCE.createHasAppliedStereotypesExpression();
+ Assert.assertFalse(exp.evaluate(this.dummyEObject));
+ }
+
+ /**
+ * The method evaluates must return <code>true</code> for
+ * <ul>
+ * <li>context is an UML Element stereotyped</li>
+ * </ul>
+ */
+ @Test
+ public void HasStereotypeExpressionTests_Test3() {
+ final HasAppliedStereotypesExpression exp = UMLExpressionsFactory.eINSTANCE.createHasAppliedStereotypesExpression();
+ Assert.assertTrue(exp.evaluate(this.stereotypedClassWithURI));
+ }
+
+ /**
+ * The method evaluates must return <code>false</code> for
+ * <ul>
+ * <li>context is an UML Element not stereotyped</li>
+ * </ul>
+ */
+ @Test
+ public void HasStereotypeExpressionTests_Test4() {
+ final HasAppliedStereotypesExpression exp = UMLExpressionsFactory.eINSTANCE.createHasAppliedStereotypesExpression();
+ Assert.assertFalse(exp.evaluate(this.notStereotypedClass));
+ }
+}

Back to the top