/******************************************************************************* * 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.OutPortBlock; import hu.bme.mit.massif.simulink.SimulinkFactory; import junit.textui.TestRunner; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Out Port Block</b></em>'. * <!-- end-user-doc --> * @generated */ public class OutPortBlockTest extends PortBlockTest { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(OutPortBlockTest.class); } /** * Constructs a new Out Port Block test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public OutPortBlockTest(String name) { super(name); } /** * Returns the fixture for this Out Port Block test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected OutPortBlock getFixture() { return (OutPortBlock)fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(SimulinkFactory.eINSTANCE.createOutPortBlock()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } //OutPortBlockTest