Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.stem.tests.populationmodels/src/org/eclipse/stem/populationmodels/standard/tests/AgingPopulationModelTest.java')
-rw-r--r--tests/org.eclipse.stem.tests.populationmodels/src/org/eclipse/stem/populationmodels/standard/tests/AgingPopulationModelTest.java79
1 files changed, 79 insertions, 0 deletions
diff --git a/tests/org.eclipse.stem.tests.populationmodels/src/org/eclipse/stem/populationmodels/standard/tests/AgingPopulationModelTest.java b/tests/org.eclipse.stem.tests.populationmodels/src/org/eclipse/stem/populationmodels/standard/tests/AgingPopulationModelTest.java
new file mode 100644
index 000000000..c26ae330a
--- /dev/null
+++ b/tests/org.eclipse.stem.tests.populationmodels/src/org/eclipse/stem/populationmodels/standard/tests/AgingPopulationModelTest.java
@@ -0,0 +1,79 @@
+package org.eclipse.stem.populationmodels.standard.tests;
+
+/*******************************************************************************
+ * Copyright (c) 2011 IBM Corporation and others.
+ * 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:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+import junit.textui.TestRunner;
+
+import org.eclipse.stem.populationmodels.standard.AgingPopulationModel;
+import org.eclipse.stem.populationmodels.standard.StandardFactory;
+
+/**
+ * <!-- begin-user-doc -->
+ * A test case for the model object '<em><b>Aging Population Model</b></em>'.
+ * <!-- end-user-doc -->
+ * @generated
+ */
+public class AgingPopulationModelTest extends DemographicPopulationModelTest {
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public static void main(String[] args) {
+ TestRunner.run(AgingPopulationModelTest.class);
+ }
+
+ /**
+ * Constructs a new Aging Population Model test case with the given name.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ public AgingPopulationModelTest(String name) {
+ super(name);
+ }
+
+ /**
+ * Returns the fixture for this Aging Population Model test case.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ @Override
+ protected AgingPopulationModel getFixture() {
+ return (AgingPopulationModel)fixture;
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @see junit.framework.TestCase#setUp()
+ * @generated
+ */
+ @Override
+ protected void setUp() throws Exception {
+ setFixture(StandardFactory.eINSTANCE.createAgingPopulationModel());
+ }
+
+ /**
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @see junit.framework.TestCase#tearDown()
+ * @generated
+ */
+ @Override
+ protected void tearDown() throws Exception {
+ setFixture(null);
+ }
+
+} //AgingPopulationModelTest

Back to the top