blob: 8436cc8aa7b3cb76e9b81f7e25a912f243429853 [file] [log] [blame]
package org.eclipse.stem.definitions.labels.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.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.stem.definitions.labels.EarthScienceLabelValue;
import org.eclipse.stem.definitions.labels.LabelsFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Earth Science Label Value</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class EarthScienceLabelValueTest extends TestCase {
/**
* The fixture for this Earth Science Label Value test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EarthScienceLabelValue fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(EarthScienceLabelValueTest.class);
}
/**
* Constructs a new Earth Science Label Value test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EarthScienceLabelValueTest(String name) {
super(name);
}
/**
* Sets the fixture for this Earth Science Label Value test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(EarthScienceLabelValue fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Earth Science Label Value test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EarthScienceLabelValue getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(LabelsFactory.eINSTANCE.createEarthScienceLabelValue());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //EarthScienceLabelValueTest