/** */ package org.eclipse.papyrus.layers.stackmodel.layers.tests; import junit.textui.TestRunner; import org.eclipse.papyrus.layers.stackmodel.layers.FillPropertySetter; import org.eclipse.papyrus.layers.stackmodel.layers.LayersFactory; /** * * A test case for the model object 'Fill Property Setter'. * * * @generated */ public class FillPropertySetterTest extends PropertySetterTest { /** * * * * @generated */ public static void main(String[] args) { TestRunner.run(FillPropertySetterTest.class); } /** * Constructs a new Fill Property Setter test case with the given name. * * * * @generated */ public FillPropertySetterTest(String name) { super(name); } /** * Returns the fixture for this Fill Property Setter test case. * * * * @generated */ @Override protected FillPropertySetter getFixture() { return (FillPropertySetter) fixture; } /** * * * * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(LayersFactory.eINSTANCE.createFillPropertySetter()); } /** * * * * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } // FillPropertySetterTest