/** */ package org.eclipse.papyrus.layers.stackmodel.layers.tests; import junit.framework.TestCase; import junit.textui.TestRunner; import org.eclipse.papyrus.layers.stackmodel.layers.LayersFactory; import org.eclipse.papyrus.layers.stackmodel.layers.PropertySetterRegistry; /** * * A test case for the model object 'Property Setter Registry'. * *

* The following operations are tested: *

*

* * @generated */ public class PropertySetterRegistryTest extends TestCase { /** * The fixture for this Property Setter Registry test case. * * * * @generated */ protected PropertySetterRegistry fixture = null; /** * * * * @generated */ public static void main(String[] args) { TestRunner.run(PropertySetterRegistryTest.class); } /** * Constructs a new Property Setter Registry test case with the given name. * * * * @generated */ public PropertySetterRegistryTest(String name) { super(name); } /** * Sets the fixture for this Property Setter Registry test case. * * * * @generated */ protected void setFixture(PropertySetterRegistry fixture) { this.fixture = fixture; } /** * Returns the fixture for this Property Setter Registry test case. * * * * @generated */ protected PropertySetterRegistry getFixture() { return fixture; } /** * * * * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(LayersFactory.eINSTANCE.createPropertySetterRegistry()); } /** * * * * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } /** * Tests the '{@link org.eclipse.papyrus.layers.stackmodel.layers.PropertySetterRegistry#getPropertySetter(org.eclipse.papyrus.layers.stackmodel.layers.Property) Get Property Setter}' operation. * * * * @see org.eclipse.papyrus.layers.stackmodel.layers.PropertySetterRegistry#getPropertySetter(org.eclipse.papyrus.layers.stackmodel.layers.Property) * @generated */ public void testGetPropertySetter__Property() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.eclipse.papyrus.layers.stackmodel.layers.PropertySetterRegistry#getPropertySetter(java.lang.String) Get Property Setter}' operation. * * * * @see org.eclipse.papyrus.layers.stackmodel.layers.PropertySetterRegistry#getPropertySetter(java.lang.String) * @generated */ public void testGetPropertySetter__String() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } /** * Tests the '{@link org.eclipse.papyrus.layers.stackmodel.layers.PropertySetterRegistry#addPropertySetter(org.eclipse.papyrus.layers.stackmodel.layers.PropertySetter) Add Property Setter}' operation. * * * * @see org.eclipse.papyrus.layers.stackmodel.layers.PropertySetterRegistry#addPropertySetter(org.eclipse.papyrus.layers.stackmodel.layers.PropertySetter) * @generated */ public void testAddPropertySetter__PropertySetter() { // TODO: implement this operation test method // Ensure that you remove @generated or mark it @generated NOT fail(); } } // PropertySetterRegistryTest