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