/******************************************************************************* * Copyright (c) 2010-2013, Embraer S.A., Budapest University of Technology and Economics * 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 * * Contributors: * Marton Bur, Abel Hegedus, Akos Horvath - initial API and implementation *******************************************************************************/ /** */ package hu.bme.mit.massif.simulink.tests; import hu.bme.mit.massif.simulink.Connection; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Connection</b></em>'. * <!-- end-user-doc --> * @generated */ public abstract class ConnectionTest extends SimulinkElementTest { /** * Constructs a new Connection test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ConnectionTest(String name) { super(name); } /** * Returns the fixture for this Connection test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected Connection getFixture() { return (Connection)fixture; } } //ConnectionTest