blob: 5a31fdd9934ed6be2cd6d697a7a62a5b448dce87 [file] [log] [blame]
package org.eclipse.stem.definitions.types.tests;
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
import junit.framework.TestCase;
import org.eclipse.stem.definitions.types.CategorizedType;
/**
* <!-- begin-user-doc -->
* A test case for the model object '<em><b>Categorized Type</b></em>'.
* <!-- end-user-doc -->
* @generated
*/
public abstract class CategorizedTypeTest extends TestCase {
/**
* The fixture for this Categorized Type test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CategorizedType fixture = null;
/**
* Constructs a new Categorized Type test case with the given name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public CategorizedTypeTest(String name) {
super(name);
}
/**
* Sets the fixture for this Categorized Type test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void setFixture(CategorizedType fixture) {
this.fixture = fixture;
}
/**
* Returns the fixture for this Categorized Type test case.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CategorizedType getFixture() {
return fixture;
}
} //CategorizedTypeTest