blob: bd80a9fed50132abcff0d25329de245c16afee35 [file] [log] [blame]
package org.eclipse.stem.core.common.tests;
/*******************************************************************************
* Copyright (c) 2010 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.core.common.CommonFactory;
import org.eclipse.stem.core.common.DoubleValue;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Double Value</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class DoubleValueTest extends TestCase {
private static final double INITIAL_VALUE = 0.0;
private static final double NEXT_VALUE = 1.0;
/**
* The fixture for this Double Value test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected DoubleValue fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(DoubleValueTest.class);
}
/**
* Constructs a new Double Value test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public DoubleValueTest(String name) {
super(name);
}
/**
* Sets the fixture for this Double Value test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(DoubleValue fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Double Value test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected DoubleValue getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated NOT
*/
@Override
protected void setUp() throws Exception {
DoubleValue testValue = CommonFactory.eINSTANCE.createDoubleValue();
testValue.setValue(INITIAL_VALUE);
setFixture(testValue);
}
/**
*
*/
public void testIsValid() {
DoubleValue fixture = getFixture();
assertTrue(fixture.getValue()==INITIAL_VALUE);
fixture.setValue(NEXT_VALUE);
assertTrue(fixture.getValue()==NEXT_VALUE);
} // testIsComplete
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //DoubleValueTest