/******************************************************************************* * 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 Expression List</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class As3ExpressionListTest extends TestCase { /** * The fixture for this As3 Expression List test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected As3ExpressionList fixture = null; /** * Constructs a new As3 Expression List test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public As3ExpressionListTest(String name) { super(name); } /** * Sets the fixture for this As3 Expression List test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(As3ExpressionList fixture) { this.fixture = fixture; } /** * Returns the fixture for this As3 Expression List test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected As3ExpressionList getFixture() { return fixture; } } //As3ExpressionListTest