blob: 2e41687e4347558e86bcac8cdf05b63580d80c74 [file] [log] [blame]
/**
*/
package org.eclipse.papyrus.layers.stackmodel.layers.tests;
import junit.textui.TestRunner;
import org.eclipse.papyrus.layers.stackmodel.layers.FontType;
import org.eclipse.papyrus.layers.stackmodel.layers.LayersFactory;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Font Type</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public class FontTypeTest extends TypeTest {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public static void main(String[] args) {
TestRunner.run(FontTypeTest.class);
}
/**
* Constructs a new Font Type test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public FontTypeTest(String name) {
super(name);
}
/**
* Returns the fixture for this Font Type test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
protected FontType getFixture() {
return (FontType) fixture;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see junit.framework.TestCase#setUp()
* @generated
*/
@Override
protected void setUp() throws Exception {
setFixture(LayersFactory.eINSTANCE.createFontType());
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see junit.framework.TestCase#tearDown()
* @generated
*/
@Override
protected void tearDown() throws Exception {
setFixture(null);
}
} // FontTypeTest