blob: 366b571cc28449bf0fef7c644e11878b0eadf362 [file] [log] [blame]
/**
* All rights reserved by Loetz GmbH und CoKG Heidelberg 2015.
*
* Contributors:
* Florian Pirchner - initial API and implementation
*/
package org.eclipse.osbp.ecview.extension.model.converter.tests;
import junit.framework.TestCase;
import junit.textui.TestRunner;
import org.eclipse.osbp.ecview.extension.model.converter.YConverterFactory;
import org.eclipse.osbp.ecview.extension.model.converter.YCustomDecimalConverter;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>YCustom Decimal Converter</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public class YCustomDecimalConverterTest extends TestCase {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final String copyright = "All rights reserved by Loetz GmbH und CoKG Heidelberg 2015.\n\nContributors:\n Florian Pirchner - initial API and implementation";
/**
* The fixture for this YCustom Decimal Converter test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected YCustomDecimalConverter fixture = null;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static void main(String[] args) {
TestRunner.run(YCustomDecimalConverterTest.class);
}
/**
* Constructs a new YCustom Decimal Converter test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public YCustomDecimalConverterTest(String name) {
super(name);
}
/**
* Sets the fixture for this YCustom Decimal Converter test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(YCustomDecimalConverter fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this YCustom Decimal Converter test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected YCustomDecimalConverter getFixture() {
return fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(YConverterFactory.eINSTANCE.createYCustomDecimalConverter());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} //YCustomDecimalConverterTest