blob: 1dda66d48f89d5618f363b674818d773e5b21ece [file] [log] [blame]
/**
* Copyright (c) 2004 - 2008 Eike Stepper, Germany.
* 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:
* Eike Stepper - initial API and implementation
*
*
* $Id: BranchTest.java,v 1.3 2008-08-01 07:53:24 estepper Exp $
*/
package org.eclipse.net4j.pop.tests;
import org.eclipse.net4j.pop.Branch;
import junit.framework.TestCase;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Branch</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class BranchTest extends TestCase
{
/**
* The fixture for this Branch test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Branch fixture = null;
/**
* Constructs a new Branch test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public BranchTest(String name)
{
super(name);
}
/**
* Sets the fixture for this Branch test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(Branch fixture)
{
this.fixture = fixture;
}
/**
* Returns the fixture for this Branch test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected Branch getFixture()
{
return fixture;
}
} //BranchTest