Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/extraplugins/sysml14/org.eclipse.papyrus.sysml14.tests/src-gen/org/eclipse/papyrus/sysml14/portandflows/tests/TriggerOnNestedPortTest.java')
-rw-r--r--tests/junit/extraplugins/sysml14/org.eclipse.papyrus.sysml14.tests/src-gen/org/eclipse/papyrus/sysml14/portandflows/tests/TriggerOnNestedPortTest.java78
1 files changed, 0 insertions, 78 deletions
diff --git a/tests/junit/extraplugins/sysml14/org.eclipse.papyrus.sysml14.tests/src-gen/org/eclipse/papyrus/sysml14/portandflows/tests/TriggerOnNestedPortTest.java b/tests/junit/extraplugins/sysml14/org.eclipse.papyrus.sysml14.tests/src-gen/org/eclipse/papyrus/sysml14/portandflows/tests/TriggerOnNestedPortTest.java
deleted file mode 100644
index 937df985cce..00000000000
--- a/tests/junit/extraplugins/sysml14/org.eclipse.papyrus.sysml14.tests/src-gen/org/eclipse/papyrus/sysml14/portandflows/tests/TriggerOnNestedPortTest.java
+++ /dev/null
@@ -1,78 +0,0 @@
-/**
- * Copyright (c) 2015 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
- */
-package org.eclipse.papyrus.sysml14.portandflows.tests;
-
-import junit.textui.TestRunner;
-
-import org.eclipse.papyrus.sysml14.blocks.tests.ElementPropertyPathTest;
-
-import org.eclipse.papyrus.sysml14.portandflows.PortandflowsFactory;
-import org.eclipse.papyrus.sysml14.portandflows.TriggerOnNestedPort;
-
-/**
- * <!-- begin-user-doc -->
- * A test case for the model object '<em><b>Trigger On Nested Port</b></em>'.
- * <!-- end-user-doc -->
- * @generated
- */
-public class TriggerOnNestedPortTest extends ElementPropertyPathTest {
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public static void main(String[] args) {
- TestRunner.run(TriggerOnNestedPortTest.class);
- }
-
- /**
- * Constructs a new Trigger On Nested Port test case with the given name.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public TriggerOnNestedPortTest(String name) {
- super(name);
- }
-
- /**
- * Returns the fixture for this Trigger On Nested Port test case.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- @Override
- protected TriggerOnNestedPort getFixture() {
- return (TriggerOnNestedPort)fixture;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see junit.framework.TestCase#setUp()
- * @generated
- */
- @Override
- protected void setUp() throws Exception {
- setFixture(PortandflowsFactory.eINSTANCE.createTriggerOnNestedPort());
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see junit.framework.TestCase#tearDown()
- * @generated
- */
- @Override
- protected void tearDown() throws Exception {
- setFixture(null);
- }
-
-} //TriggerOnNestedPortTest

Back to the top