/** */ package questionairemodel.tests; import junit.framework.TestCase; import junit.textui.TestRunner; import questionairemodel.QuestionCondition; import questionairemodel.QuestionairemodelFactory; /** * <!-- begin-user-doc --> * A test case for the model object '<em><b>Question Condition</b></em>'. * <!-- end-user-doc --> * @generated */ public class QuestionConditionTest extends TestCase { /** * The fixture for this Question Condition test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected QuestionCondition fixture = null; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static void main(String[] args) { TestRunner.run(QuestionConditionTest.class); } /** * Constructs a new Question Condition test case with the given name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public QuestionConditionTest(String name) { super(name); } /** * Sets the fixture for this Question Condition test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void setFixture(QuestionCondition fixture) { this.fixture = fixture; } /** * Returns the fixture for this Question Condition test case. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected QuestionCondition getFixture() { return fixture; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#setUp() * @generated */ @Override protected void setUp() throws Exception { setFixture(QuestionairemodelFactory.eINSTANCE.createQuestionCondition()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see junit.framework.TestCase#tearDown() * @generated */ @Override protected void tearDown() throws Exception { setFixture(null); } } //QuestionConditionTest