/******************************************************************************* * Copyright (c) 2010 Martin Schnabel <mb0@mb0.org>. * 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 ******************************************************************************/ package org.axdt.as3.model; import junit.framework.TestCase; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>As3 Postfix Operator</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class As3PostfixOperatorTest extends TestCase { /** * The fixture for this As3 Postfix Operator test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected As3PostfixOperator fixture = null; /** * Constructs a new As3 Postfix Operator test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public As3PostfixOperatorTest(String name) { super(name); } /** * Sets the fixture for this As3 Postfix Operator test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(As3PostfixOperator fixture) { this.fixture = fixture; } /** * Returns the fixture for this As3 Postfix Operator test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected As3PostfixOperator getFixture() { return fixture; } } //As3PostfixOperatorTest